HEX
Server: Apache/2.4.57 (Unix) OpenSSL/1.1.1w
System: Linux server.mediaphic.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: efhamali (1088)
PHP: 7.3.33
Disabled: exec,passthru,shell_exec,system,show_source,mail,sendmail,popen,symlink,phpinfo
Upload Files
File: /home/efhamali/public_html/wp-content/themes/betheme/visual-builder/partials/introduction.php
<?php  
$slides = [
    '<h1>Fast & intuitive Live Builder</h1>',
    '<h2>View an element and customise it<br /> at the same time</h2>',
    '<h2>Hundreds of pre-built sections<br /> ready to use on click</h2>',
    '<h2>Create, save & restore whenever<br /> you want with Revisions</h2>',
    '<h2>Import & Export of content<br /> or single sections</h2>',
    '<h2>Live responsive preview for<br /> mobile, tablet & desktop layout</h2>',
  ];

$max = count( $slides );
$index = 1;

echo '<div class="mfn-intro-overlay" style="display:none">';
  echo '<div class="mfn-intro-container">';
    echo '<a class="mfn-intro-close close-button mfn-option-btn btn-large" href="#"><span class="mfn-icon mfn-icon-close-light"></span></a>';
    echo '<ul>';

      foreach( $slides as $slide ){

        echo '<li class="step-'. $index .'">
          <div class="pic"></div>
          <div class="desc">
            <p class="slide-number">'. $index .' / '. $max .'</p>
            '. $slide .'
            <a class="mfn-intro-close start-now" href="#">Skip</a>
          </div>
        </li>';

        $index++;
      }

    echo '</ul>';
  echo '</div>';
echo '</div>';

?>