-
Notifications
You must be signed in to change notification settings - Fork 111
Configure
Maicon Pinto edited this page Jun 22, 2016
·
3 revisions
// src/Controller/AppController.php
public function beforeRender(Event $event)
{
// ...
$this->set('theme', Configure::read('Theme'));
}
// To customize configuration paste it at end of file config/bootstrap.php
Configure::write('Theme', [
'title' => 'AdminLTE',
'logo' => [
'mini' => '<b>A</b>LT',
'large' => '<b>Admin</b>LTE'
]
]);