it-yakutia / yii2-collective
Collective for yii2
Installs: 64
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- creocoder/yii2-nested-sets: ^0.9.0
- uraankhayayaal/yii2-materializecomponents: ~1.0.1
- uraankhayayaal/yii2-redactor: ~1.0.0
- uraankhayayaal/yii2-sortable: ~1.0.1
- yiisoft/yii2: ~2.0.0
README
Collective server for yii2
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist it-yakutia/yii2-collective "*"
or add
"it-yakutia/yii2-collective": "*"
to the require section of your composer.json
file.
Add migration path in your console config file:
'controllerMap' => [ ... 'migration' => [ ... 'migrationPath' => [ ... '@vendor/it-yakutia/collective/src/migrations', ... ], ] ]
Usage
Once the extension is installed, simply use it in your code by :
<?= Url::toRoute(['/collective/back/index']); ?>
Add RBAC roles:
collective
Custom view file:
'custom_view_for_modules' => [ 'collective_front' => [ 'index' => '@frontend/views/front_page/index', '_item' => '@frontend/views/front_page/_item', 'view' => '@frontend/views/front_page/view', ], ],
<?= Url::toRoute(['/collective/front/index']); ?>