PHP Classes

File: view/melis-dashboard-plugin-creator/dashboard-plugin-creator/render-tool.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.phtml   Download  
File: view/melis-dashboard-plugin-creator/dashboard-plugin-creator/render-tool.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: 430 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; ?>" class="tab-pane container-level-a">
    <?php
       
if (!empty($this->zoneconfig['interface'])) {
            foreach (
$this->zoneconfig['interface'] as $keyConfig => $val) {
                echo
$this->$keyConfig;
            }
        }
   
?>
</div>