first commit
This commit is contained in:
24
backend/modules/profile/Profile.php
Executable file
24
backend/modules/profile/Profile.php
Executable file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace app\modules\profile;
|
||||
|
||||
/**
|
||||
* profile module definition class
|
||||
*/
|
||||
class Profile extends \yii\base\Module
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public $controllerNamespace = 'app\modules\profile\controllers';
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
parent::init();
|
||||
|
||||
// custom initialization code goes here
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user