HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //var/www/html/insiders/wp-load/wp-content/plugins/internal-links/backend/menupage/tour/intro.php
<?php
namespace ILJ\Backend\MenuPage\Tour;

use ILJ\Backend\MenuPage\Tour\Step;

/**
 * Step: Intro
 *
 * Gives a brief description of the tour
 *
 * @package ILJ\Backend\Tour
 * @since   1.1.0
 */
class Intro extends Step {
	
	/**
	 * renderContent
	 *
	 * @return void
	 */
	public function renderContent() {
		?>
		<div class="intro">
			<div class="banner">
				<img src="<?php echo esc_url(ILJ_URL . '/admin/img/character-onboarding.png'); ?>" />
			</div>
			<div class="content">
				<h2><?php esc_html_e('Start the tour through the plugin', 'internal-links'); ?></h2>
				<p>
					<?php esc_html_e('We show you the most important functions of the Internal Link Juicer in a few minutes.', 'internal-links'); ?>
					<?php esc_html_e('With that you are able to start immediately and get the maximum out of your internal links.', 'internal-links'); ?>
				</p>
			</div>
		</div>
		<?php
	}
}