25 lines
408 B
PHP
Executable File
25 lines
408 B
PHP
Executable File
<?php
|
|
|
|
namespace backend\modules\achievements;
|
|
|
|
/**
|
|
* achievement module definition class
|
|
*/
|
|
class Achievements extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'backend\modules\achievements\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|