bariew / yii2-page-cms-module
Yii2 module for static pages creating.
Installs: 352
Dependents: 2
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
- bariew/yii2-dropdown-x: >=1.0.6
- bariew/yii2-imperavi-redactor: dev-master
- bariew/yii2-node-tree: 2.0.*
README
Description
Module for site "static" pages management. Has admin area for creating pages with WYSIWYG HTML editor and SEO fields. Has subpages feature (they will be available via subpaths like page1/page2/page3). Has JS tree for subpages tree management. Has page menu widget with a multiple dropdown feature.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist bariew/yii2-page-cms-module "*"
or add
"bariew/yii2-page-cms-module": "*"
to the require section of your composer.json
file.
Usage
- Include 'page' module in the modules config section:
'modules' => [
...
'page' => [
'class' => 'bariew\pageModule\Module'
],
],
- Add a new routing rule to your url manager in the components config section:
'components' => [
...
'urlManager' => [
'rules' => [
[
'class' => 'bariew\pageModule\components\UrlRule',
'pattern' => '<url:\\S*>',
'route' => 'page/default/view'
],
'<controller>/<action>' => '<controller>/<action>',
'<module>/<controller>/<action>' => '<module>/<controller>/<action>',
],
],
],
- Apply migrations from the module migrations folder with a console command:
./yii migrate --migrationPath=@vendor/bariew/yii2-page-cms-module/migrations
- Go to page/item/index URL and create some pages. Home page is generated as the root by default.