1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace app\admin\controller\sms;
- use app\common\controller\Backend;
- use modules\sms\library\Helper;
- /**
- * 模板变量管理
- *
- */
- class Variable extends Backend
- {
- /**
- * Variable模型对象
- * @var \app\admin\model\sms\Variable
- */
- protected $model = null;
- protected $quickSearchField = ['title', 'name'];
- protected $defaultSortField = 'id,desc';
- protected $preExcludeFields = ['createtime', 'updatetime'];
- public function initialize()
- {
- parent::initialize();
- $this->model = new \app\admin\model\sms\Variable;
- }
- public function getVar($id)
- {
- $val = Helper::calcVar($id);
- if ($val) {
- $this->success('', $val);
- }
- $this->error('计算失败,请检查变量设置');
- }
- }
|