2017 © Pedro Peláez
 

phile-plugin template-lex

Use the Lex parser in your templates for PhileCMS

image

phile/template-lex

Use the Lex parser in your templates for PhileCMS

  • Saturday, March 24, 2018
  • by NeoBlack
  • Repository
  • 2 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

NOTE: This repository is not maintained anymore and archived., (*1)

phileTemplateLex

Use the Lex parser in your templates for PhileCMS, (*2)

1.1 Installation (composer)

php composer.phar require phile/template-lex:*

1.2 Installation (Download)

  • Install the latest version of Phile
  • Clone this repo into plugins/phile/templateLex

2. Activation

After you have installed the plugin. You need to add the following line to your config.php file:, (*3)

$config['plugins']['phile\\templateLex'] = array('active' => true);

Install Lex via composer

Just add the Lex dependency to your composer.json file:, (*4)

{
  "require": {
    "twig/twig": "1.14.*",
    "michelf/php-markdown": "1.3",
    "pyrocms/lex": "2.2.*" // this is the new line you will need
  }
}

Now run your composer install command as normal., (*5)

Modify your config.php file:, (*6)

$config['plugins'] = array(
  // disable the Twig template engine
  'phile\\templateTwig' => array('active' => false),
  // enable the Lex template engine
  'phile\\templateLex' => array('active' => true)
);

Disclaimer

Due to the nature of the Page model in Phile, and the fact that Lex doesn't like some objects, there are some slightly different properties available to the pages array., (*7)

  • title
  • url
  • content
  • meta

This covers most of the things that the pages array covers in Twig., (*8)

Not a drop in replacement for Twig

If you have not used Lex before, please read the docs because there are a few differences in syntax, and philosophy, over Twig., (*9)

I have included an index.lex file to show how to recreate the index page from the default theme., (*10)

Why use this over Twig

  • Different syntax (all curly braces, no {% %} braces)
  • Lighter weight (but this is debatable)
  • Much simpler than Twig or Smarty (less functions)

The Versions

24/03 2018

dev-master

9999999-dev http://philecms.com

Use the Lex parser in your templates for PhileCMS

  Sources   Download

MIT

The Requires

 

cms content phile