PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
recentnews
<tabset> <tab heading="<?php $this->t('LBL_SETTING'); ?>"> <div class="block"> <div class="form-group"> <div class="controls"> <label> <?php $this->t('LBL_NEWSLIST_DISPLAY_IMAGE'); ?> <input ng-model="data.image" type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting()"/> </label> </div> </div> <div class="form-group" ng-hide="data.image=0"> <label> <?php $this->t('LBL_NEWSLIST_THUMBNAIL_SIZE'); ?> </label> <div class="controls"> <select ng-model="data.thumbnail_size" class="form-control" ng-change="changeSetting()"> <?php for ($i = 1;$i <= 12;++$i) { echo '<option value="'.$i.'">Colspan '.$i.'</option>'; } ?> </select> </div> </div> <div class="form-group"> <div class="controls"> <label> <?php $this->t('LBL_NEWSLIST_DISPLAY_DATETIME'); ?> <input ng-model="data.datetime" type="checkbox" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting()"/> </label> </div> </div> <div class="form-group"> <label> <?php $this->t('LBL_NEWSLIST_POST_COUNT'); ?> </label> <div class="controls"> <select ng-model="data.post_per_page" class="form-control" ng-change="changeSetting()"> <?php $post_per_pages = array(10,20,30,50); for ($i = 0;$i < sizeof($post_per_pages);++$i) { echo '<option value="'.$post_per_pages[$i].'">'.$post_per_pages[$i].'</option>'; } ?> </select> </div> </div> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset>
[+]
..
[-] backend.js
[edit]
[-] frontend_view.php
[edit]
[-] frontend_class.php
[edit]
[-] backend.php
[edit]