PHP Classes

File: template/View/render-prop-tool-header.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis Tool Creator   template/View/render-prop-tool-header.phtml   Download  
File: template/View/render-prop-tool-header.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: 826 bytes
 

Contents

Class file image Download
<?php
    $id
= $this->id . '_' . $this->zoneconfig['conf']['id'];
   
$melisKey = $this->zoneconfig['conf']['melisKey'];
?>
<div id="<?php echo $id ?>" data-melisKey="<?php echo $melisKey; ?>">
    <div class="me-heading bg-white border-bottom">
        <div class="row">
            <div class="me-hl col-xs-8 col-sm-8 col-md-8">
                <h1 class="content-heading"><?php echo $this->title ?></h1>
            </div>
            <div class="me-hl col-xs-4 col-sm-4 col-md-4">
                <button class="btn btn-success btnSaveModuleTpl pull-right" data-id="<?php echo $this->id ?>" title="<?php echo $this->translate('tr_moduletpl_common_button_save'); ?>"><i class="fa fa-save"></i> <?php echo $this->translate('tr_moduletpl_common_button_save'); ?></button>
            </div>
        </div>
    </div>
</div>