arter / amos-news
Sistema AMOS per le news
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=5.4.0
- 2amigos/yii2-ckeditor-widget: ~1.0
- arter/amos-admin: ^2.2.0
- arter/amos-attachments: ^1.1.11
- arter/amos-comments: ^1.1
- arter/amos-core: ^1.15.0
- arter/amos-dashboard: ^1.8.4
- arter/amos-notify: ^1.4.13
- arter/amos-report: ^1.0.5
- arter/amos-seo: *
- arter/amos-workflow: ^1.0.5
- cornernote/yii2-workflow-manager: *
- kv4nt/yii2-owl-carousel2: *
- raoul2000/yii2-workflow: *
- raoul2000/yii2-workflow-view: *
- yiidoc/yii2-redactor: *
Requires (Dev)
This package is auto-updated.
Last update: 2025-01-07 12:17:28 UTC
README
News management.
Installation
You need to require this package and enable the module in your configuration.
add to composer requirements in composer.json
"arter/amos-news": "dev-master",
or run command bash:
composer require "arter/amos-news:dev-master"
Enable the News modules in modules-amos.php, add :
'news' => [
'class' => 'arter\amos\news\AmosNews',
],
add news migrations to console modules (console/config/migrations-amos.php):
'@vendor/arter/amos-news/src/migrations'
If a frontend or a public site are used in your project and news need to be visible outside backend, enable form/wizard fields to allow publication in frontend/home page with params:
'news' => [
'class' => 'arter\amos\news\AmosNews',
'params' => [
'site_publish_enabled' => true,
'site_featured_enabled' => true
]
],
The content is suitable to be used with cwh content management. To do so:
- Activate cwh plugin
- Open cwh configuration wizard (admin privilege is required) url:
- search for news in content configuration section
- edit configuration of news and save
If tags are needed enable this module in "modules-amos.php" (backend/config folder in main project) in tag section. After that, enable the trees in tag manager.
If platform uses report and/or comments and you want to enable News to be commented/to report a content, add the model to the configuration in modules-amos.php:
for reports:
'report' => [
'class' => 'arter\amos\report\AmosReport',
'modelsEnabled' => [
.
.
'arter\amos\news\models\News', //line to add
.
.
]
],
for comments:
'comments' => [
'class' => 'arter\amos\comments\AmosComments',
'modelsEnabled' => [
.
.
'arter\amos\news\models\News', //line to add
.
.
],
],
Configurable fields
Here the list of configurable fields, properties of module AmosNews. If some property default is not suitable for your project, you can configure it in module, eg:
'news' => [
'class' => 'arter\amos\news\AmosNews',
'validatePublicationDate' => false, //changed property (default was true)
],
validatePublicationDate - boolean, default = true
If this attribute is true the validation of the publication date is active.
By default, you can ONLY validate news with publication_date greater or equal than TODAY.
Set to false to allow validation for news with publication_date less than TODAY.filterCategoriesByRole - boolean, default = false
If true, enables category role check via table news_category_roles_mm.
By default news category are available to all users.
In case categories are in association with rbac roles, populate table 'news_category_roles_mm' and set to true the Module property filterCategoriesByRole in configurations:
'news' => [
'class' => 'arter\amos\news\AmosNews',
'filterCategoriesByRole' => true
]
hidePubblicationDate - boolean, default = false
The news created are always visible, hide fields publication_from, publication_tonewsRequiredFields - array, default = ['news_categorie_id', 'titolo', 'status', 'descrizione_breve']
Mandatory fields in news form: by default news category, title and status are mandatory.
If in your platform, for example, you don't want title to be a mandatory field, overwrite newsRequiredFields property as below:'news' => [ 'class' => 'arter\amos\news\AmosNews', 'newsRequiredFields' => ['news_categorie_id', 'status'] ],
defaultCategory - integer The ID of the default category pre-selected for the new News
'news' => [ 'class' => 'arter\amos\news\AmosNews', 'defaultCategory' => 3 ],
autoUpdatePublicationDate - boolean, default = false
This set the auto update of the publication date on the save if the news is published'news' => [ 'class' => 'arter\amos\news\AmosNews', 'autoUpdatePublicationDate' => true ],
$enableCategoriesForCommunity - boolean, default = false
- $showAllCategoriesForCommunity - boolean, default = false
- $whiteListRolesCategories - default = ['ADMIN', 'BASIC_USER']