PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
slick
<tabset> <tab heading="<?php $this->t('LBL_SLIDES'); ?>"> <div class=""> <div class="form-group"> <div class="controls"> <div id="tab_list"> <div ng-repeat="slides in data.slides" class="alert alert-dismissable alert-info"> <button class="close btn-mini" ng-click="deleteTab($index)"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <span>Slide {{$index + 1}}</span> </div> </div> </div> </div> <div class="form-group"> <button class="btn" ng-click="addTab()"><i class="fa fa-plus"></i></button> </div> </div> </tab> <tab heading="<?php $this->t('LBL_SETTING'); ?>"> <div class="form-group"> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.fade" ng-change="changeSetting()"><?php $this->t('LBL_SLICKCAROUSEL_FADE'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="data.settings.swipe" ng-change="changeSetting()"><?php $this->t('LBL_SLICKCAROUSEL_SWIPE'); ?></label> </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.autoplaySpeed" ng-change="changeSetting()"/> <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.speed" ng-change="changeSetting()"/> <span class="input-group-addon">ms</span> </div> </div> <div class="form-group"> <div class="controls"> <label><input type="checkbox" ng-model="data.settings.autoplay" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeAutoplay()" class="ui-config"/><?php $this->t('LBL_SLIDESHOW_AUTO_PLAY'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-model="data.settings.arrows" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting(1)"><?php $this->t('LBL_SLIDESHOW_CONTROL_NAV'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-model="data.settings.dots" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting(1)"><?php $this->t('LBL_CAMERASLIDER_DOTS'); ?></label> </div> <div class="controls"> <label><input type="checkbox" ng-model="data.settings.pauseOnHover" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting()"><?php $this->t('LBL_SLIDESHOW_PAUSE_ON_HOVER'); ?></label> </div> </div> <div class="form-group"> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset>
[+]
..
[-] backend.js
[edit]
[-] frontend_class.php
[edit]
[-] backend.php
[edit]