infoweb-internet-solutions/yii2-cms-pages 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

infoweb-internet-solutions/yii2-cms-pages

Composer 安装命令:

composer require infoweb-internet-solutions/yii2-cms-pages

包简介

Yii2 pages

README 文档

README

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.

统计信息

  • 总下载量: 1.11k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 5
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-10-01