PHP
69
Вклад в тег
namespace app\extensions\components;
use yii\base\Application;
use yii\base\BootstrapInterface;
class AppBootstrap implements BootstrapInterface
{
/**
* Bootstrap method to be called during application bootstrap stage.
* @param Application $app the application currently running
*/
public function bootstrap(Application $app)
{
// Подключаем файлик с функциями
}
}
'bootstrap' => [
'app\extensions\components\AppBootstrap',
],