# hostinger/2.1.6/includes/Admin/Onboarding/Steps/AddLogo.php

Hostinger Tools, version 2.1.6. 41 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.1.6/code/includes/Admin/Onboarding/Steps/AddLogo.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.1.6/raw/includes/Admin/Onboarding/Steps/AddLogo.php
- Modified: 2024-03-15T08:53:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hostinger/2.1.6/code/includes/Admin/Onboarding/Steps/AddLogo.php#L10-L20`.

```php
<?php

namespace Hostinger\Admin\Onboarding\Steps;

defined( 'ABSPATH' ) || exit;

class AddLogo extends OnboardingStep {
	public function get_title(): string {
		return __( 'Upload your logo', 'hostinger' );
	}

	public function get_body(): array {
		return array(
			array(
				'title'       => __( 'Create a logo', 'hostinger' ),
				'description' => __( 'Adding a logo is a great way to personalize a website or add branding information. You can use your existing logo or create a new one using the <a href="https://logo.hostinger.com/?ref=wordpress-onboarding" target="_blank">AI Logo Maker</a>.', 'hostinger' ),
			),
			array(
				'title'       => __( 'Go to the Customize page', 'hostinger' ),
				'description' => __( 'In the left sidebar, click Appearance to expand the menu. In the Appearance section, click Customize. The Customize page will open. ', 'hostinger' ),
			),
			array(
				'title'       => __( 'Upload your logo', 'hostinger' ),
				'description' => __( 'In the left sidebar, click Site Identity, then click on the Select Site Icon button. Here, you can upload your brand logo. ', 'hostinger' ),
			),
		);
	}

	public function step_identifier(): string {
		return 'logo_upload';
	}

	public function get_redirect_link(): string {
		return admin_url( 'customize.php' );
	}

	public function button_text(): string {
		return __( 'Take me there', 'hostinger' );
	}
}

```
