PHP Classes

File: view/melis-cms/sites/render-tool-sites-modal-add-step1.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis CMS   view/melis-cms/sites/render-tool-sites-modal-add-step1.phtml   Download  
File: view/melis-cms/sites/render-tool-sites-modal-add-step1.phtml
Role: Example script
Content type: text/plain
Description: Example script
Class: Melis CMS
Content management system that provides its tools
Author: By
Last change:
Date: 1 year ago
Size: 682 bytes
 

Contents

Class file image Download
<?php
$id
= '';
if (!empty(
$this->zoneconfig['conf']['id']))
   
$id = ' id="' . $this->zoneconfig['conf']['id'] . '"';
?>

<div <?= $id; ?> data-melisKey="<?= $this->melisKey; ?>">
    <div class="tool-sites_container_fixed_width">
        <div>
            <span><?= $this->translate('tr_melis_cms_sites_tool_add_step1_text'); ?></span>
        </div>
        <br />
        <div class="step1-form">
            <?php
            $form
= $this->step1_form;
           
$form->prepare();
            echo
$this->form()->openTag($form);
            echo
$this->melisFieldCollection($form);
            echo
$this->form()->closeTag();
           
?>
</div>
    </div>
</div>