Skip to content

jfrancr/figdice

 
 

Repository files navigation

Logo FigDice Templating System for PHP

Build Status Latest Stable Version Coverage Status @figdice on Twitter

Abstract

FigDice is a templating engine for PHP. It differs from most of the popular template systems, in the way the presentation data are made available to templates: instead of pushing the data from Controller to View, you build Views that pull the data they need.

See figdice.org

Try a Live Demo now!

Presentation in French: GLMF-158 : FigDice, un templating system efficace et original

Features

  • Fast, easy and powerful Template Engine
  • XML syntax for your Templates: you gain built-in validation
  • Instructions are extended attributes inside your HTML tags: you can display your templates WYSIWYG in your browser/editor
  • Manipulate your data with the help of a simple and powerful expression parser
  • Built-in i18n, using keys/values from cached XML dictionaries
  • Inclusions, loops, conditions, with a non-intrusive syntax inside the document
  • No programming required, for the Template designers
  • Hermetic separation between the application's layers (Presentation / Logics)
  • Inversion of control: the Templates pull the data on-demand. The controllers need not know the templates by heart beforehand

Installation

Choose among the 3 methods below, which suits better your needs: Composer, Phar, or Zip file.

1. Composer

Simply add the following composer.json file to your project root, or append the "require" section to your existing composer.json file:

{
  "require": {
    "figdice/figdice": "2.1.0"
  }
}

Then run the following command in your project folder:

php composer.phar install

The \figdice namespace is made available thanks to the autoload Composer feature.

2. Phar

Download the latest FigDice phar file to the location of your choice. Then, in your source files where you need to use FigDice features, write the line:

require_once 'phar:///path/to/figdice.phar';

The phar file's stub registers an autoload function for the classes in the \figdice namespace. Notice that, if you already have an old-style __autoload function, you must register it with spl_autoload_register before importing the phar.

3. Zip

Download the latest Figdice zip file to the location of your choice and extract the archive. Then, require_once the autoload.php file at the root of the FigDice folder.

Getting Started

Browse the examples!

See Wiki for more details.

About

FigDice PHP Templating Engine

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.1%
  • HTML 0.9%