2017 © Pedro Peláez
 

silverstripe-module silverstripe-twig

Allows use of twig in SilverStripe 3.1

image

camspiers/silverstripe-twig

Allows use of twig in SilverStripe 3.1

  • Tuesday, October 20, 2015
  • by camspiers
  • Repository
  • 7 Watchers
  • 18 Stars
  • 213 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 4 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Twig templates for SilverStripe 3.1

Overview

SilverStripe Twig enables the use of the Twig templating engine in SilverStripe 3.1., (*1)

If you are not familiar with Twig, check out the docs., (*2)

Installation

Composer

Create or edit a composer.json file in the root of your SilverStripe project, and make sure the following is present., (*3)

{
    "require": {
        "camspiers/silverstripe-twig": "0.0.*",
        "camspiers/autoloader-composer-silverstripe": "1.0.*"
    }
}

After completing this step, navigate in Terminal or similar to the SilverStripe root directory and run composer install or composer update depending on whether or not you have composer already in use., (*4)

Getting started

What to name and where to put your templates

Create a folder called twig in your current theme. This is where twig will look for your templates. By default Twig expects your templates to be named with the .twig extension, but can be easily configured to look for others (see twig.extensions)., (*5)

The way SilverStripe twig decides which template to use is the same way SilverStripe selects .ss templates., (*6)

It builds a ranked list of candidate templates based on the class name of the current controller or dataRecord and the action being called. Using the template list it selects the first template that it finds., (*7)

For example, for page of PageType Page. If there is a Page.twig template in the twig folder it will use that., (*8)

How to enable twig

Twig rendering is enabled by extending the functionality of your SilverStripe controller. This can be done in two ways depending on what version of PHP you have., (*9)

PHP 5.3

If you want to use twig for all controllers that extend Page_Controller, set up is as follows:, (*10)

Page.php, (*11)

class Page_Controller extends TwigContentController
{
}

If you want to use twig in a Controller, set up is as follows:, (*12)

MyController.php, (*13)

class MyController extends TwigController
{
}

PHP 5.4

The PHP 5.3 classes above are actually auto-generated from a trait. To use the trait add a use statement in your controller as follows:, (*14)

class Page_Controller extends ContentController
{
    use TwigControllerTrait;    
}

or:, (*15)

class MyController extends Controller
{
    use TwigControllerTrait;    
}

Accessing your Controller in twig

By default twig makes your controller (and therefore your dataRecord) available in your template by the variable c., (*16)

{% for Page in c.Pages %}
    {{ Page.Title }}
{% endfor %}
<title>{{ c.Title }}</title>
<ul>
{% for Page in c.Menu(1) %}
    <li>{{ Page.Title }}</li>
{% else %}
    <li>No pages</li>
{% endfor %}
</ul>

Practical usage example

Achieving similar functionality to SilverStripe's $Layout variable is easy with twig., (*17)

Twig has the concepts of extends and blocks which enable flexible template reuse., (*18)

Page.twig, (*19)

{% extends "layouts/layout.twig" %}

{% block head %}
    {{ parent() }}
    {# add some extra assets here #}
{% endblock %}

{% block header %}
    {# add some header content here #}
{% endblock %}

{% block content %}


{{ c.Title }}

{% endblock %}

layouts/layout.twig, (*20)

<html>
    <head>
        {% block head %}
            {# default assets here #}
        {% endblock %}
    </head>
    <body>
        {% block header %}{% endblock %}
        {% block content %}{% endblock %}
    </body>
</html>

Configuration

SilverStripe Twig uses a dependency injection container (an extension of Pimple) to allow configuration and DI for all objects used., (*21)

Options, (*22)

  • twig.environment_options
  • twig.extensions
  • twig.compilation_cache
  • twig.template_paths
  • twig.controller_variable_name

An example:, (*23)

mysite/_config.php, (*24)

TwigContainer::extendConfig(array(
    'twig.environment_options' => array(
        'debug' => true
    ),
    'twig.extensions' => array(
        '.twig',
        '.html'
    ),
    'twig.compilation_cache' => BASE_PATH . '/silverstripe-cache',
    'twig.template_paths' => array(
        THEMES_PATH . '/my-theme/templates'
    ),
    'twig.controller_variable_name' => 'controller'
));

Any service provided by SilverStripe Twig can be accessed by instantiating the Container., (*25)

$dic = new TwigContainer;
$dic['twig']->loadTemplate('template.twig')->render();

See Pimple for more information., (*26)

Using Twig and Haml together

SilverStripe twig supports the use of haml through the SilverStripe haml module., (*27)

Install the SilverStripe haml module and you are ready to go., (*28)

You can now name your files .haml (though you don't have to)., (*29)

Usage

To get Twig to process your file as Haml add:, (*30)

{% haml %}

To the top of any template you want to be processed as haml., (*31)

Example:, (*32)

{% haml %}
!!!
%html
    %head
        %title #{ c.Title } | haml and twig
        - block head
            :javascript
                console.log('yay');
    %body
        - block content
            %h1 #{ c.Title }
            %p #{ c.Content|raw }
            %span.created #{ c.Created|date("d/m/Y") }

Contributing

Code guidelines

This project follows the standards defined in:, (*33)


License

SilverStripe Twig is released under the MIT license, (*34)

The Versions

20/10 2015

dev-master

9999999-dev

Allows use of twig in SilverStripe 3.1

  Sources   Download

MIT

The Requires

 

The Development Requires

20/10 2015

0.0.4

0.0.4.0

Allows use of twig in SilverStripe 3.1

  Sources   Download

MIT

The Requires

 

The Development Requires

10/12 2012

0.0.3

0.0.3.0

Allows use of twig in SilverStripe

  Sources   Download

MIT

The Requires

 

The Development Requires

09/12 2012

0.0.2

0.0.2.0

Allows use of twig in SilverStripe

  Sources   Download

MIT

The Requires

 

The Development Requires

09/12 2012

0.0.1

0.0.1.0

Allows use of twig in SilverStripe

  Sources   Download

MIT

The Requires

 

The Development Requires