Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SiteController extends CController {
- public $layout = '//layouts/main';
- public function actionIndex(){
- $this->render('index'); //this action will use '//layouts/main';
- }
- public function actionLogin(){
- $this->layout = '//layouts/login';
- $this->render('login'); //this action will use '//layouts/login';
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement