PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
newslist
<tabset> <tab heading="<?php $this->t('LBL_SETTING'); ?>"> <div class="block"> <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 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"> <div class="controls"> <label> <?php $this->t('LBL_NEWSLIST_SHOW_READMORE_BUTTON'); ?> <input ng-model="data.readmore" ng-true-value="'1'" ng-false-value="'0'" ng-change="changeSetting()" type="checkbox" /> </label> </div> </div> <div class="form-group"> <label class="control-label"><?php $this->t('LBL_NEWSLIST_SUMMARY_MAX_LENGTH'); ?></label> <div class="controls"> <input type="number" ng-model="data.maxlength" class="form-control" > </div> </div> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset>
[+]
..
[-] frontend_class.php
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.js
[edit]