melisplatform / melis-engine
Melis Platform engine module
Installs: 4 574
Dependents: 6
Suggesters: 3
Security: 0
Stars: 4
Watchers: 8
Forks: 1
Open Issues: 1
Type:melisplatform-module
Requires
- php: ^8.1|^8.3
- laminas/laminas-cache: ^3.12
- laminas/laminas-cache-storage-adapter-filesystem: ^2.3
- laminas/laminas-cache-storage-adapter-memory: ^2.3
- melisplatform/melis-core: ^5.2
- melisplatform/melis-front: ^5.2
Replaces
- laminas/laminas-cache-storage-adapter-apc: *
- laminas/laminas-cache-storage-adapter-blackhole: *
- laminas/laminas-cache-storage-adapter-dba: *
- laminas/laminas-cache-storage-adapter-memcached: *
- laminas/laminas-cache-storage-adapter-mongodb: *
- laminas/laminas-cache-storage-adapter-wincache: *
- laminas/laminas-cache-storage-adapter-xcache: *
- laminas/laminas-cache-storage-adapter-zend-server: *
- dev-master
- v5.3.1
- v5.3.0
- v5.2.0
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.1
- v5.0.0
- v4.1.1
- v4.1.0
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.2.6
- v3.2.5
- v3.2.4
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.13
- v3.0.12
- v3.0.11
- v3.0.10
- v3.0.9
- v3.0.8
- v3.0.7
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.1
- v3.0.0
- v2.5.0
- v2.4.2
- v2.4.1
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.1
- v2.2.0
- v2.1.1
- v2.1
- dev-develop
- dev-evo/cms-docu
- dev-evo/partial-caching
- dev-update/php83
- dev-update/utf8mb4
- dev-update/php-8-upgrade
- dev-update/404-multilingual-site
- dev-fix/melis-sites-cache
- dev-feature/tinymce-custom
- dev-php-7.0
- dev-feature/site-bundles
- dev-fix/edition-languages
- dev-laminas/mini-template-manager
- dev-php7.4
- dev-migrate/laminas
- dev-zend-old-version
- dev-update/mini-template-manager
- dev-ffesch-patch-1
This package is auto-updated.
Last update: 2024-10-23 07:43:40 UTC
README
MelisEngine provides a set of services and classes to access the CMS' pages and datas.
Getting Started
These instructions will get you a copy of the project up and running on your machine.
Prerequisites
None
Installing
Run the composer command:
composer require melisplatform/melis-engine
Database
Database model is accessible on the MySQL Workbench file:
/melis-engine/install/sql/model
Database will be installed through composer and its hooks.
In case of problems, SQL files are located here:
/melis-engine/install/sql
Tools & Elements provided
- All Melis CMS database model
- Services to access the page and tree system
- Default Melis templating plugin abstract class
- Page microservices
Running the code
MelisEngine Services
MelisEngine provides many services to be used in other modules:
- MelisPageService
Provides services to get all datas from a page. File: /melis-engine/src/Service/MelisPageService.php
// Get the service
$melisPage = $this->getServiceManager()->get('MelisEnginePage');
// Get all datas of this page
$datasPageRes = $melisPage->getDatasPage($siteMainPage);
- MelisTreeService
Provides services to get sets of pages based on the tree of pages.
Meant to deliver parent pages, breadcrumb, generate menus, generate URLs, etc.
File: /melis-engine/src/Service/MelisTreeService.php
// Get the service
$treeSrv = $this->getServiceManager()->get('MelisEngineTree');
// Get the breadcrumb
$pageBreadcrumb = $treeSrv->getPageBreadcrumb($pageId, 0, true);
- MelisSearch
This service deals with search on the Melis Platform hosted website.
Search is done using Zend_Search.
File: /melis-engine/src/Service/MelisSearchService.php
// Get the service
$searchSvc = $this->getServiceManager()->get('MelisSearch');
// Search
$searchresults = $searchSvc->search($keyword, $moduleName, true);
Melis CMS database models
All models used my the platform to access the CMS part of the database are located in this module.
Folder: /melis-engine/src/Model
Melis Templating Plugin Abstract Class
Melis Platform offers a plugin system for edition of pages.
All plugins are built on the ZF2 Controller plugin system, and all plugins must extend this class too as it provides many default and awaited methods.
File: /melis-engine/src/Controller/Plugin/MelisTemplatingPlugin.php
See Full documentation on templating plugins here
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