Yii-Plugin with Composer implementation
composer require zacksleo/yii-plugin
config in main.php
'modules' => [
//'admin',
'plugin' => [
'class' => 'zacksleo\yii\plugin\PluginModule',
'layout' => 'layout', // your layout
'layoutPath' => dirname(__DIR__) . '/modules/admin/views/layouts/', // your layout path
'pluginRoot' => 'webroot.plugins'
]
],
'components'=>[
//... other config
'plugin' =>[
'class' => 'zacksleo\yii\plugin\components\HookRender',
],
]
<?php Yii::app()->plugin->render('global_footer'); >
More docs see health901/Yii-Plugin