YiiDebugController.php 300 B

1234567891011121314151617181920212223
  1. <?php
  2. class YiiDebugController extends CController
  3. {
  4. public function actionIndex()
  5. {
  6. $this->render('index');
  7. }
  8. public function getViewPath()
  9. {
  10. return __DIR__ . '/views';
  11. }
  12. public function getLayoutFile($layoutName)
  13. {
  14. return $this->getViewPath() . '/layouts/main.php';
  15. }
  16. }