DefaultController.php 269 B

12345678910111213
  1. <?php
  2. /**
  3. * The default srbac controller
  4. */
  5. class DefaultController extends CController {
  6. /**
  7. * The default action if no route is specified
  8. */
  9. public function actionIndex() {
  10. //$this->render('index');
  11. $this->redirect(array('authitem/frontpage'));
  12. }
  13. }