webvimark / module-content
There is no license information available for the latest version (dev-master) of this package.
Pages, layouts and stuff
dev-master
2014-10-13 20:03 UTC
Requires
- webvimark/ckeditor: *
- webvimark/components: *
- webvimark/form-fields-visibility: dev-master
- webvimark/helpers: dev-master
- webvimark/jqtreewidget: dev-master
This package is auto-updated.
Last update: 2024-10-29 04:18:11 UTC
README
Provide:
- pages
- text blocks
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist webvimark/module-content "*"
or add
"webvimark/module-content": "*"
to the require section of your composer.json
file.
Configuration
In your config/web.php
'layout'=>'@vendor/webvimark/module-content/views/layouts/defaultMain', 'urlManager' => [ 'rules'=>[ [ 'class' => 'webvimark\modules\content\components\PageUrlRule', 'pattern'=>'', 'route'=>'', 'connectionID' => 'db', ], '<_c:[\w \-]+>/<id:\d+>'=>'<_c>/view', '<_c:[\w \-]+>/<_a:[\w \-]+>/<id:\d+>'=>'<_c>/<_a>', '<_c:[\w \-]+>/<_a:[\w \-]+>'=>'<_c>/<_a>', '<_m:[\w \-]+>/<_c:[\w \-]+>/<_a:[\w \-]+>'=>'<_m>/<_c>/<_a>', '<_m:[\w \-]+>/<_c:[\w \-]+>/<_a:[\w \-]+>/<id:\d+>'=>'<_m>/<_c>/<_a>', ], ], 'modules'=>[ 'content' => [ 'class' => 'webvimark\modules\content\ContentModule', 'freeAccess' => true, // Feature for webvimark/module-user-management. Default is false /* 'left3ColumnCssClass' => 'col-xs-15', 'center3ColumnCssClass' => 'col-xs-30', 'right3ColumnCssClass' => 'col-xs-15', 'left2ColumnCssClass' => 'col-xs-15', 'centerForLeft2ColumnCssClass' => 'col-xs-45', 'right2ColumnCssClass' => 'col-xs-15', 'centerForRight2ColumnCssClass' => 'col-xs-45', */ ], ],
Usage
Go to gii