Advertisement
petrabarus

Untitled

Nov 25th, 2011
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. class SiteController extends CController {
  2.     public $layout = '//layouts/main';
  3.  
  4.    public function actionIndex(){
  5.        $this->render('index'); //this action will use '//layouts/main';
  6.    }
  7.  
  8.    public function actionLogin(){
  9.        $this->layout = '//layouts/login';
  10.        $this->render('login'); //this action will use '//layouts/login';
  11.    }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement