PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
slideshow
<tabset> <tab heading="<?php $this->t('LBL_SLIDES'); ?>"> <?php include 'slideshow_image_list.php'; ?> </tab> <tab heading="<?php $this->t('LBL_SETTING'); ?>"> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_SLIDESHOW_EFFECT'); ?></label> <div class="controls"> <select ng-model="data.settings.effect" ng-change="changeSettings()" class="form-control"> <?php $skin = array('random', 'sliceDownRight' , 'sliceDownLeft' , 'sliceUpRight' , 'sliceUpLeft' , 'sliceUpDown' , 'sliceUpDownLeft' , 'fold' , 'fade' , 'boxRandom' , 'boxRain' , 'boxRainReverse' , 'boxRainGrow' , 'boxRainGrowReverse'); foreach ($skin as $item): ?> <option value="<?php echo $item; ?>"><?php echo $item; ?></option> <?php endforeach; ?> </select> </div> </div> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_SLIDESHOW_PAUSE_TIME'); ?></label> <div class="controls input-group"> <input type="number" class="form-control" ng-model="data.settings.pauseTime" ng-change="changeSettings()"/> <span class="input-group-addon">ms</span> </div> </div> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_SLIDESHOW_ANIM_SPEED'); ?></label> <div class="controls input-group"> <input type="number" class="form-control" ng-model="data.settings.animSpeed" ng-change="changeSettings()"/> <span class="input-group-addon">ms</span> </div> </div> <div class="form-group"> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.manualAdvance"/><?php $this->t('LBL_SLIDESHOW_AUTO_PLAY'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.directionNav"/><?php $this->t('LBL_SLIDESHOW_DIRECTION_NAV_HIDE'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.pauseOnHover"/><?php $this->t('LBL_SLIDESHOW_PAUSE_ON_HOVER'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.controlNav" /><?php $this->t('LBL_SLIDESHOW_CONTROL_NAV'); ?></label> </div> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset>
[+]
..
[-] frontend_view.php
[edit]
[-] frontend_class.php
[edit]
[-] frontend_script.php
[edit]
[-] backend.js
[edit]
[-] backend.php
[edit]