Skip to content

NullRefExcep/yii2-category

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Category

Latest Stable Version Total Downloads Latest Unstable Version License

Module for categories (WIP)

Installation

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

Module integration

If you need additional information about integration current module with your project, please check example folder

Using with admin module

You can use this module with modules:

Models overriding

    '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',...],
...