help.php 427 B

12345678910111213141516
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. if (!defined('WY_ROOT')) {
  5. exit;
  6. }
  7. class help extends Controller
  8. {
  9. public function index()
  10. {
  11. $list = $this->model()->select()->from('arlist')->where(array('fields' => 'cid=? and is_state=?', 'values' => array(1, 1)))->fetchAll();
  12. $data = array('title' => '帮助中心', 'list' => $list);
  13. $this->put('help.php', $data);
  14. }
  15. }