melisplatform / melis-cms-news
Melis Platform news module
Installs: 4 002
Dependents: 3
Suggesters: 3
Security: 0
Stars: 2
Watchers: 8
Forks: 1
Open Issues: 0
Type:melisplatform-module
Requires
- php: ^8.1|^8.3
- laminas/laminas-paginator: ^2.18
- melisplatform/melis-cms: ^5.2
- melisplatform/melis-core: ^5.2
- melisplatform/melis-engine: ^5.2
- melisplatform/melis-front: ^5.2
- dev-master
- v5.3.3
- v5.3.2
- v5.3.1
- v5.3.0
- v5.2.0
- v5.1.1
- v5.1.0
- v5.0.2
- v5.0.1
- v5.0.0
- v4.1.0
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- v3.1.7
- v3.1.6
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.2
- v3.0.1
- v3.0.0
- v2.5.0
- v2.4.6
- v2.4.5
- v2.4.1
- v2.4.0
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.1
- v2.1
- dev-update/integrate-with-category2
- dev-update/jquery3.7.1
- dev-develop
- dev-update/tinymce6.7.0
- dev-update/php83
- dev-update/utf8mb4
- dev-fix/news-listing-multilanguage
- dev-fix/php7.3compatibility
- dev-feature/news-workflow
- dev-featured/news-draggable-paragraph
- dev-feature/news-seo
- dev-update/php-8-upgrade
- dev-fix/news-publish-unpublish-date
- dev-feature/tinymce-custom-plugin
- dev-php-7.0
- dev-fix/tickets
- dev-php7.4
- dev-migrate/laminas
- dev-feature/melis-design-jquery3-update
- dev-feature/gdpr-auto-delete
- dev-zend-old-version
- dev-update/php7.4
This package is auto-updated.
Last update: 2024-10-22 08:08:26 UTC
README
Provides a venue for creating and maintaining news posts inside Melis Platform
Getting started
These instructions will get you a copy of the project up and running on your machine.
Prerequisites
The following modules need to be installed to have Melis CMS News module run:
- Melis core
- Melis engine
- Melis front
- Melis CMS
Installing
Run the composer command:
composer require melisplatform/melis-cms-news
Database
Database model is accessible via the MySQL Workbench file:
/melis-cms-news/install/sql/model
Database will be installed through composer and its hooks.
In case of problems, SQL files are located here:
/melis-cms-news/install/sql
Tools and elements provided
- News tool
- Latest news plugin
- News list plugin
- News details plugin
News tool
Provides the user with the basic actions in managing news posts such as:
- Creation
- user can create a news post in the available languages.
- Edition
- user can manage the news post's publish date, titles, contents, or attach post-specific media(images, files, etc.).
- Deletion
- user can delete a news post.
News service
File: /melis-cms-news/src/Service/MelisCmsNewsService.php
- This service can be used inside other modules like so:
// Get the service
$newsService = $this->getServiceManager()->get('MelisCmsNewsService');
- Common methods the service offers are as follows:
- Get news post details: getNewsById(...)
- Get a list of posts: getNewsList(...)
- Delete a post: deleteNewsById(...)
- For a more detailed information on the methods, please visit the file.
Authors
- Melis Technology - www.melistechnology.com
See also the list of contributors who participated in this project.
License
This project is licensed under the OSL-3.0 License - see the LICENSE.md file for details