Skip to content

Instantly share code, notes, and snippets.

@DrMabuse23
Created April 13, 2013 18:58
Show Gist options
  • Save DrMabuse23/5379614 to your computer and use it in GitHub Desktop.
Save DrMabuse23/5379614 to your computer and use it in GitHub Desktop.
How To use Theme in Yii
//I wil show you 2 Types
/**
* 1.
* in you want put this in your main.php
* this way is for all controllers
*/
return array(
'theme' => NAME of your Folder in www/themes/ example:'bootstrap',
/**
* 2.
* in your controller
*/
public function init()
{
Yii::app()->theme = 'bootsrap';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment