Star.class.php 273 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php /** * 默认控制器 */ class Controller_Star extends Controller_Abstract { public function init() { //header("location:".SITE_MAIN); } public function indexAction() { $this->_view['type'] = $this->_request->query('type', 1); } }