mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
27 lines
457 B
PHP
27 lines
457 B
PHP
<?php
|
|
|
|
namespace app\modules\admin;
|
|
|
|
use Yii;
|
|
|
|
/**
|
|
* admin module definition class
|
|
*/
|
|
class Module extends \yii\base\Module
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public $controllerNamespace = 'app\modules\admin\controllers';
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
Yii::$app->view->params['breadcrumbs'][] = ['label' => 'Админпанель', 'url' => ['/admin/default/index']];
|
|
}
|
|
}
|