コード例 #1
0
ファイル: RuleController.class.php プロジェクト: Orchild/mt
 /**
  * 数据列表
  */
 public function lists()
 {
     if (IS_POST) {
         $title = PUT('title');
         $map = array();
         $map['parent_id'] = 0;
         parent::page(array('size' => PUT('size', 10), 'page' => PUT('p'), 'where' => $map, 'orderby' => 'sort desc,id desc'));
     } else {
         $this->display();
     }
 }