PHP Classes

File: template/View/render-prop-tool-main-content.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis Tool Creator   template/View/render-prop-tool-main-content.phtml   Download  
File: template/View/render-prop-tool-main-content.phtml
Role: Example script
Content type: text/plain
Description: Example script
Class: Melis Tool Creator
Module for the Melis CMS to create tools
Author: By
Last change:
Date: 1 year ago
Size: 671 bytes
 

Contents

Class file image Download
<?php
    $id
= $this->id . '_' . $this->zoneconfig['conf']['id'];
   
$melisKey = $this->zoneconfig['conf']['melisKey'];
?>
<div class="tab-pane active" id="<?php echo $id ?>" data-melisKey="<?php echo $melisKey; ?>">
    <div style="margin-bottom: 20px;">
        <div class="melis-news-heading border-bottom">
            <h3 style="margin-bottom: inherit"><?php echo $this->translate('tr_moduletpl_properties') ?></h3>
        </div>
    </div>
    <?php
        $form
= $this->moduleTplForm;
       
$form->prepare();
        echo
$this->form()->openTag($form);
        echo
$this->melisFieldCollection($form);
        echo
$this->form()->closeTag();
   
?>
</div>