HEX
Server: Apache
System: Linux vpshost0650.publiccloud.com.br 4.4.79-grsec-1.lc.x86_64 #1 SMP Wed Aug 2 14:18:21 -03 2017 x86_64
User: bandeirantesbomb3 (10068)
PHP: 8.0.7
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/elementskit-lite/libs/framework/views/layout-onboard.php
<!-- onboard_steps nav begins -->
<?php

use ElementsKit_Lite\Libs\Framework\Classes\Onboard_Status;

// redirect to plugin home page if onboard already has completed
Onboard_Status::instance()->exit_from_onboard();

echo '<ul class="ekit-onboard-nav"><div class="ekit-onboard-progressbar"></div>';
$count = 1;
foreach ( $onboard_steps as $step_key => $step ) :
	$icon  = ! empty( $step['icon'] ) ? $step['icon'] : '';
	$title = ! empty( $step['title'] ) ? $step['title'] : '';
	?>
	<li data-step_key="<?php echo esc_attr( $step_key ); ?>"
		class="ekit-onboard-nav-item 
		<?php 
		echo $count === 1 ? 'active' : '';
		echo $count === count( $onboard_steps ) ? 'last' : ''; 
		?>
		">
		<?php if ( ! empty( $icon ) ) : ?>
			<i class="ekit-onboard-nav-icon <?php echo esc_attr( $icon ); ?>"></i>
		<?php endif; ?>
		<?php if ( ! empty( $title ) ) : ?>
			<span class="ekit-onboard-nav-text"><?php echo esc_html( $title ); ?></span>
		<?php endif; ?>
	</li>
	<?php 
	$count ++;
endforeach;
echo '</ul>';
?>
<!-- onboard_steps nav ends -->

<!-- onboard_steps content begins -->
<?php foreach ( $onboard_steps as $step_key => $step ) : ?>

	<!-- includes view file for this step -->
	<?php
	$path = isset( $step['view_path'] )
		? $step['view_path']
		: self::get_dir() . 'views/onboard-steps/' . $step_key . '.php';

	if ( file_exists( $path ) ) {
		echo '<div class="ekit-onboard-step-wrapper ekit-onboard-' . esc_attr( $step_key ) . '">';
		include $path;
		echo '</div>';
	} 
	?>

<?php endforeach; ?>
<!-- onboard_steps content ends -->