PHP Classes

File: view/melis-dashboard-plugin-creator/dashboard-plugin-creator/render-tool-header.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis PHP Dashboard Plugin Creator   view/melis-dashboard-plugin-creator/dashboard-plugin-creator/render-tool-header.phtml   Download  
File: view/melis-dashboard-plugin-creator/dashboard-plugin-creator/render-tool-header.phtml
Role: Example script
Content type: text/plain
Description: Example script
Class: Melis PHP Dashboard Plugin Creator
Plugin to create dashboards for the Melis platform
Author: By
Last change:
Date: 2 years ago
Size: 789 bytes
 

Contents

Class file image Download
<?php
    $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" id="<?=$id?>" data-meliskey="<?=$melisKey?>">
        <div class="row">
            <div class="me-hl col-xs-12 col-sm-12 col-md-12">
                <h1 class="content-heading"><?php echo $this->translate('tr_melisdashboardplugincreator_title')?></h1>
                <?php if ($this->translate('tr_melisdashboardplugincreator_desc') != 'tr_melisdashboardplugincreator_desc') {?>
<p><?= $this->translate('tr_melisdashboardplugincreator_desc'); ?></p>
                <?php } ?>
</div>
        </div>
    </div>
</div>