PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
infobanner
<div class="block"> <tabset> <tab heading="<?php $this->t('LBL_SETTINGS'); ?>"> <div class="form-group"> <label><?php $this->t('LBL_TITLE'); ?></label> <div class="controls"> <input type="text" class="form-control" ng-model="data.title" ng-change="changeTitle()"> </div> </div> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_ALIGN'); ?></label> <div class="controls"> <select type="text" class="form-control" ng-model="data.align" ng-change="changeAlign()"> <option value="top-left">Top Left</option> <option value="top-center">Top Center</option> <option value="top-right">Top Right</option> <option value="center-left">Center Left</option> <option value="center">Center Center</option> <option value="center-right">Center Right</option> <option value="bottom-left">Bottom Left</option> <option value="bottom-center">Bottom Center</option> <option value="bottom-right">Bottom Right</option> </select> </div> </div> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_IMAGE_SIZE'); ?></label> <div class="controls input-group"> <input type="number" class="form-control" ng-model="data.size" ng-change="changeSize()"> <span class="input-group-addon">px</span> </div> </div> <div class="form-group"> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_IMAGE'); ?></label> <div class="controls"> <?php include dirname(__FILE__)."/image_button_command.php"; ?> </div> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_DESCRIPTION'); ?></label> <div class="controls"> <input type="text" class="form-control" ng-model="data.description" ng-change="changeDescription()"> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_BUTTON_TEXT'); ?></label> <div class="controls"> <input type="text" class="form-control" ng-model="data.button_text" ng-change="changeButton()"> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_BUTTON_LINK'); ?></label> <div class="controls"> <input type="text" class="form-control" ng-model="data.button_link" ng-change="changeButton()"> </div> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset> </div>
[+]
..
[-] frontend_view.php
[edit]
[-] backend.php
[edit]
[-] frontend_class.php
[edit]
[-] backend.js
[edit]