1234567891011121314151617181920212223 |
- <?php
- class YiiDebugController extends CController
- {
-
- public function actionIndex()
- {
- $this->render('index');
- }
-
-
- public function getViewPath()
- {
- return __DIR__ . '/views';
- }
-
- public function getLayoutFile($layoutName)
- {
- return $this->getViewPath() . '/layouts/main.php';
- }
-
-
- }
|