infoweb-internet-solutions/yii2-cms-pages

Yii2 pages


Keywords
yii2, infoweb, yii2-cms-pages
License
MIT

Documentation

Pages extension for Yii 2

With this extension you can manage pages that can be used in a website.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist infoweb-internet-solutions/yii2-cms-pages "*"

or add

"infoweb-internet-solutions/yii2-cms-pages": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed run this migration

yii migrate/up --migrationPath=@infoweb/pages/migrations

Enable the module in backend/config/main.php:

'modules' => [
    ...
    'pages' => [
        'class' => 'infoweb\pages\Module',
    ],
],

Import the translations and use category 'infoweb/pages':

yii i18n/import @infoweb/pages/messages

And finally enable the page component in frontend/config/main.php:

'components' => [
	...
    'page' => [
    	'class' => 'infoweb\pages\components\Page'
    ]
]

Configuration

All available configuration options are listed below with their default values.


enableMenu (type: boolean, default: false)

If this option is set to true, it is possible to attach an entity from the menu module to a page.


enableForm (type: boolean, default: false)

If this option is set to true, it is possible to attach an entity from the form module to a page.


enableSliders (type: boolean, default: false)

If this option is set to true, it is possible to attach an entity from the sliders module to a page.


enablePrivatePages (type: boolean, default: false)

If this option is set to true, the public attribute of a page can be managed.


defaultPublicVisibility (type: boolean, default: true)

This is the value that will be used as the default value of the public attribute of a page.


allowContentDuplication (type: boolean, default: true)

If this option is set to true, the duplicateable jquery plugin is activated on all translateable attributes.


ckEditorOptions (type: array, default: ['height' => 500])

These are the custom options for that will be used for each ckEditor instance in this module. It is also possible to override these settings per instance in its own view.