You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
869 B
24 lines
869 B
<?php
|
|
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
|
|
?>
|
|
<!-- ============================================
|
|
STEP 1
|
|
============================================== -->
|
|
<?php
|
|
$sectionId = 'section-step-1';
|
|
$expandClass = $sectionId == $open_section ? 'open' : 'close';
|
|
?>
|
|
<section id="<?php echo $sectionId; ?>" class="expandable <?php echo $expandClass; ?>" >
|
|
<h2 class="header expand-header">
|
|
Step <span class="step">1</span>: Deployment
|
|
</h2>
|
|
<div class="content" >
|
|
<div id="dup-help-scanner" class="help-page">
|
|
<?php
|
|
dupxTplRender('pages-parts/help/steps/step1-parts/basic-step1-setup');
|
|
dupxTplRender('pages-parts/help/steps/step1-parts/advanced-step1-options');
|
|
dupxTplRender('pages-parts/help/steps/step1-parts/validation-step1');
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|