Module for categories (WIP)
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nullref/yii2-category "*"
or add
"nullref/yii2-category": "*"
to the require section of your composer.json
file.
Then You have run console command for install this module:
php yii module/install nullref/yii2-category
and module will be added to your application config (@app/config/installed_modules.php
)
Pay attention that if you don't use our application template it needs to change config files structure to have ability run commands that show above.
Please check this documentation section
If you need additional information about integration current module with your project, please check example folder
You can use this module with modules:
'category' => [
'class' => 'nullref\category\Module',
'classMap' => [
'Category' => 'app\models\Category',
'CategoryQuery' => 'app\models\CategoryQuery',
],
],
Also you have to add module to bootstrap list of application:
...
'bootstrap' => ['category',...],
...