Download the PHP package melisplatform/melis-cms-twig without Composer
On this page you can find all versions of the php package melisplatform/melis-cms-twig. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download melisplatform/melis-cms-twig
More information about melisplatform/melis-cms-twig
Files in melisplatform/melis-cms-twig
Package melis-cms-twig
Short Description Twig as an alternative templating engine in Melis CMS pages
License OSL-3.0
Homepage https://github.com/melisplatform/melis-cms-twig
Informations about the package melis-cms-twig
Melis CMS Twig
Extends Twig's functionalities to offer an alternative rendering strategy. This module is based on ZendFramework's ZfcTwig.
Getting started
These instructions will get you a copy of the project up and running on your machine.
Installation
Run the composer command:
Guides
Basic usage inside Melis Platform
By default, Melis CMS Twig can be used to render a page inside Melis CMS by performing the following:
I. Base Template creation
This base template will be extended by a child layout.
-
Inside your site's layout view folder, create a view file with a
twig
file extension:..\view\layout\defaultTwigLayout.twig
This template must be registered in your site module's configuration:
Possible contents of a base template can be seen in this sample: defaultTwigLayout.twig
II. Child Template creation
For this example, we will be creating a "Home" page.
-
Inside your site's view folder, create a new file:
..\view\my-demo-site-name\home\my-index.twig
Sample child templates: news-list.twig
-
Inside Melis Platform, go to
MelisCms
>Site Tools
>Template manager
, and add aNew template
.- Site: My Demo Site Name
- Template type:
Twig
- Layout:
defaultTwigLayout
- Controller: Home
- Action:
myIndex
Layout shall be the base template's name as registered in your module configuration. In other words,
MyDemoSiteName/defaultTwigLayout.Action shall be the child template's comma-separated filename, transformed into Camel Case.
Inside Home Controller, implement a method named
myIndexAction(...)
.
III. Twig a page
- Inside Melis Platform, go to
MelisCms
>Site tree view
. Create a new page. -
Set the page's
Template
to your child template from the previous step. SelectDraft
to save & reload the Page.Note: To enable Twig rendering in front, enable Melis CMS Twig in in your site's
module.load.php
.
Using View Helpers
Inside your twig templates, Melis CMS Twig provides access to various View Helpers:
-
Laminas View Helpers (Layout, Doctype, etc.)
-
Melis Helpers (MelisTag, MelisDragDropZone, etc.)
- Melis Plugins (MelisCmsNewsListPlugin, MelisCmsNewsLatestPlugin, & more)
Converting a Melis Plugin
To make use of Melis Plugins inside Twig templates, convert them as view helpers.
I. Helper creation
-
Create/Copy the helper class that extends Laminas's
AbstractHelper
. -
Implement the
__invoke
method that it calls your plugin:ServiceManager->get('ControllerPluginManager')->get('YourPlugin')
. return
the result ofViewRenderer->render(YourPlugin)
.
II. Helper Factory creation
-
Create/Copy the helper factory class that implements Laminas's
FactoryInterface
- Implement the
createService
method that it instantiates the Helper from the previous step, passing all the needed parameters.
III. Helper Registration
The conversion process actually creates a Twig function injected inside Melis CMS Twig's Environment via ZF2's View Helper Manager.
This is the reason why you need to register your plugin under the view_helpers
key.
- Under your site's configuration (
my-demo-site-name\config\module.config.php
), register your plugin's helper:
References
These documentations mainly helped in understanding & implementing the module:
Authors
- Melis Technology - www.melistechnology.com
See also the list of contributors who participated in this project.
License
This project is licensed under the Melis Technology premium versions end user license agreement (EULA) - see the LICENSE.md file for details
All versions of melis-cms-twig with dependencies
twig/twig Version ^3.8
melisplatform/melis-core Version ^5.2
melisplatform/melis-cms Version ^5.2