PHP Classes

File: template/dashboard-view-multiple-tab.phtml

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis PHP Dashboard Plugin Creator   template/dashboard-view-multiple-tab.phtml   Download  
File: template/dashboard-view-multiple-tab.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: 686 bytes
 

Contents

Class file image Download
<?php if ($this->toolIsAccessible): ?>
<div class="widget widget-tabs widget-tabs-responsive">
        <!-- Tabs Heading Start-->
        <div class="widget-head">
            <ul class="nav nav-tabs">
                #TABHEADER
            </ul>
        </div>
        <!-- Tabs Heading End -->
    </div>

    <!-- Tabs Content Start-->
    <div class="row row-merge">
        <div class="col-sm-12 bg-white">
            <div class="innerAll">
                <div class="tab-content">
                    #TABCONTENT
                </div>
            </div>
        </div>
    </div>
    <!-- Tabs Content End-->

<?php else: ?>
<div class="no-rights-container">
        <span><?= $this->translate('tr_melisdashboardplugin_plugin_no_rights'); ?></span>
    </div>
<?php endif; ?>