PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
alert
<div class="block"> <tabset> <tab heading="<?php $this->t('LBL_ALERTS'); ?>"> <ul class="form_builder_block list"> <li ng-repeat="alert in data.alerts"> <div class="header"> <span>{{alert.label}}</span> <button class="btn btn-small" ng-click="deleteAlert($index)"><i class="fa fa-trash"></i></button> <button class="btn btn-small" ng-click="editAlert($index)"><span ng-if="!alert.edit_mode"><i class="fa fa-pencil"></i></span></button> </div> <div class="edit_block" ng-hide="!alert.edit_mode"> <div class="form-group"> <label class="controls"><?php $this->t('LBL_ALERT_HAS_ICON'); ?><input type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-model="alert.has_icon" ng-change="changeIcon($index)"></label> </div> <div class="form-group" ng-hide="alert.has_icon==0"> <div class="controls"><?php $this->t('LBL_ALERT_ICON'); ?></div> <ui-iconpicker groups="font-awesome" ng-model="alert.icon" ng-change="changeIcon($index)"></ui-iconpicker> </div> <div class="form-group"> <div class="controls"><?php $this->t('LBL_ALERT_LABEL'); ?></div> <input type="text" ng-model="alert.label" ng-change="changeLabel($index)" class="form-control" /> </div> </div> </li> </ul> <div class="form-group"> <button class="btn btn-primary" ng-click="addAlert()"><i class="fa fa-plus"></i></button> </div> </tab> <?php include dirname(__FILE__).'extra/design_tab.php'; ?> <?php include dirname(__FILE__).'extra/animate_tab.php'; ?> </tabset> </div>
[+]
..
[-] backend.js
[edit]
[-] frontend_class.php
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]