PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
line
<div class=""> <tabset> <tab heading="<?php $this->t('LBL_SETTING'); ?>"> <div class="form-group"> <label><?php $this->t('LBL_WIDTH'); ?></label> <div class="controls"> <select ng-model="data.width" ng-change="changeWidth()" class="form-control"> <?php $ws = array(10,20,30,40,50,60,70,80,90,100); foreach ($ws as $w) { echo '<option value="'.$w.'">'.$w.'%</option>'; } ?> </select> </div> </div> <div class="form-group"> <label class="control-label"> <?php $this->t('LBL_BUTTON_ALIGN'); ?> </label> <div class="controls"> <select ng-model="data.align" ng-change="changeAlign()" class="form-control"> <option value="left">Left</option> <option value="center">Center</option> <option value="right">Right</option> </select> </div> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset> </div>
[+]
..
[-] frontend_class.php
[edit]
[-] backend.js
[edit]
[-] frontend_view.php
[edit]
[-] backend.php
[edit]