Releases: yii2mod/yii2-cms
Releases · yii2mod/yii2-cms
1.9.2 Fix froala editor version
- Fixed froala editor version
1.9.1 hotfix release
- Fix Bootstrap loading
1.9 Release
- Added froala editor
- Added ability to upload images via froala editor
For upgrade to this release you need to execute the new migration:
$ php yii migrate --migrationPath=@vendor/yii2mod/yii2-cms/migrations
1.8.1 Release
- Fix import in ManageController
1.8 Release
- Added markdown editor
- Added Module class
- Update docs
1.7 Release
- Added
commentWidgetParams
property.
public function actions()
{
return [
'page' => [
'class' => 'yii2mod\cms\actions\PageAction',
'commentWidgetParams' => [
'maxLevel' => 1,
'dataProviderConfig' => [
'pagination' => [
'pageSize' => 5
],
],
]
]
];
}
1.6 Release
- Added php-cs-fixer
- Fixed code style
1.5.1 Release
Changelog
- Fix 0ab0f7b
1.5 Release
Changelog
- Enh 622a9d1 : added new properties to CmsController, rename cms search class.
Now you can override views files, cms model class and cms search class in following way:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => [
'class' => 'yii2mod\cms\controllers\CmsController',
'searchClass' => [
'class' => 'yii2mod\cms\models\search\CmsSearch',
'pageSize' => 25
],
'modelClass' => 'Your own cms model class',
'indexView' => 'custom path to index view file',
'createView' => 'custom path to create view file',
'updateView' => 'custom path to update view file',
],
],
],
],
1.4.1 Release
Changelog
- Fix 5abfdb3