Phly\Mustache
MOVED!
This package has moved to phly/phly-mustache,
and the package name has changed to phly/phly-mustache
., (*1)
I have updated packagist to mark phly/mustache
as abandoned and to point
users to the new package name. All previous releases are available under the
old package name, and have the same functionality. The new package contains
the v2 code, however, which has never been released under the old name., (*2)
Phly\Mustache is a Mustache (http://mustache.github.com) implementation written
for PHP 5.3+. It conforms to the principles of mustache, and allows for
extension of the format via pragmas., (*3)
For full documentation, please visit
ReadTheDocs., (*4)
The mailing list is at https://groups.google.com/d/forum/phly_mustache, (*5)
At this time, Phly\Mustache has support for the following:, (*6)
-
PhlyTest\Mustache\Mustache
, (*7)
- Renders string templates
- Renders file templates
- Can use object properties for substitutions
- Can use method return value for substitutions
- Template may use conditionals
- Conditional is skipped if value is false
- Conditional is skipped if value is empty
- Template iterates arrays
- Template iterates traversable objects
- Higher order sections render inside out
- Template will dereference nested arrays
- Template will dereference nested objects
- Inverted sections render on empty values
- Renders partials
- Allows aliasing partials
- Escapes standard characters
- Triple mustaches prevent escaping
- Honors implicit iterator pragma
- Allows setting alternate template suffix
- Strips comments from rendered output
- Allows specifying alternate delimiters
- Alternate delimiters set in section only apply to that section
- Alternate delimiters apply to child sections
- Alternate delimiters do not carry to partials
- Pragmas are section specific
- Pragmas do not extend to partials
- Handles recursive partials
- Lexer strips unwanted whitespace from tokens
- Array values that refer to p h p built ins should not call them
- Object properties that refer to p h p built ins should not call them
- Array values that refer to static methods should not call them
- String values that refer to functions should not call them
- Array values that refer to static methods in array syntax should not call them
- Std class as view should not raise error
- Dot notation is exanded to sub property of view
- With dot notation if subproperty does not exist empty string is rendered
-
PhlyTest\Mustache\HierarchicalViews
, (*8)
- Understands hierarchical templates
- Placeholders are rendered as unnamed sections
- Only placeholders with replacements receive substitutions
- Can render multiple placeholders
- Can render nested child placeholders
- Nested children can render placeholders defined in parent child
-
PhlyTest\Mustache\DefaultResolver
, (*9)
- Resolves using mustache suffix by default
- Resolves using provided suffix
- Resolves using specified directory separator
- Uses path stack internally
-
PhlyTest\Mustache\Pragma\SubViews
, (*10)
- Sub view content is captured in parent
- Renders nested sub views
- Sub view uses parent view when no view provided
- Should render sub view returned by closure
- Std class composing sub view should not raise error
Architecture
Phly\Mustache consists of five primary classes:, (*11)
- Lexer: tokenizes mustache syntax.
- Renderer: renders a list of tokens, using substitions provided via a view.
- Pragma: interface for pragmas, which may modify how tokens are handled
- Resolver: resolves a template name to mustache syntax or tokens.
- Mustache: facade/gateway class. Tokenizes and renders templates, caches
tokens, provides partial aliasing, and acts as primary interface for
end-users.
Usage
Usage is fairly straightforward:, (*12)
include '/path/to/library/Phly/Mustache/_autoload.php';
use Phly\Mustache\Mustache;
$mustache = new Mustache();
echo $mustache->render('some-template', $view);
By default, phly_mustache will look under the current directory for templates
ending with '.mustache'; you can create a stack of directories to search by
using the setTemplatePath() method:, (*13)
$mustache->setTemplatePath($path1)
->setTemplatePath($path2);
In the above, it will search first $path2, then $path1 to resolve the template., (*14)
You may also change the suffix it will use to resolve templates:, (*15)
$mustache->setSuffix('html'); // use '.html' as the suffix
If your templates use pragmas, you must first add pragma handlers to the
renderer. This can be done as follows:, (*16)
use Phly\Mustache\Pragma\ImplicitIterator as ImplicitIteratorPragma;
$mustache->getRenderer()->addPragma(new ImplicitIteratorPragma());
$mustache->render('template-with-pragma', $view);
Views can be either associative arrays or objects. For objects, any public
member, either a property or a method, may be referenced in your template. As an
example:, (*17)
class View
{
public $first_name = 'Matthew';
public $last_name = "Weier O'Phinney";
public function full_name()
{
return $this->first_name . ' ' . $this->last_name;
}
}
Any property (or array key) may also refer to a valid callback; in such cases,
the return value of the callback will be used., (*18)
$view = new \stdClass;
$view->first_name = 'Matthew';
$view->last_name = "Weier O'Phinney";
$view->full_name = function() use ($view) {
return $view->first_name . ' ' . $view->last_name;
};
The following sections detail unique and/or advanced features of phly_mustache., (*19)
Autoloading
phly_mustache follows the PSR-0 standard for class naming conventions, meaning
any PSR-0-compliant class loader will work. To simplify things out of the box,
the component contains an "_autoload.php" file which will register an autoloader
for the phly_mustache component with spl_autoload. You can simply include that
file, and start using phly_mustache., (*20)
Higher Order Sections
"Higher order sections" refer to callbacks that return callbacks. As an example,
consider the following template:, (*21)
{{#bolder}}Hi {{name}}.{{/bolder}}
and the following view:, (*22)
$view = new \stdClass;
$view->name = 'Tater';
$view->bolder = function() {
return function($text, $renderer) {
return '<b>' . $renderer($text) . '</b>';
};
};
In this case, the contents of the section, "Hi {{name}}." will be passed as the
first argument to the section, and a callback capable of rendering will be
passed as the second (this is basically a closure that curries in the current
Renderer object and calls the appropriate method). This allows you to re-use a
given "section" in order to create re-usable capabilities; think of them like
"view helpers" in systems like Zend_View, Solar_View, Savant, etc., (*23)
Partials
Partials are a basic form of inclusion within Mustache; anytime you find you
have re-usable bits of templates, move them into a partial, and refer to the
partial from the parent template., (*24)
Typically, you will only reference partials within your templates, using
standard syntax:, (*25)
{{>partial-name}}
However, you may optionally pass a list of partials when rendering. When you do
so, the list should be a set of alias/template pairs:, (*26)
$mustache->render($template, array(), array(
'winnings' => 'user-winnings',
));
In the above example, 'winnings' refers to the template
"user-winnings.mustache". Thus, within the $template being rendered, you may
refer to the following partial:, (*27)
{{>winnings}}
and it will resolve to the appropriate aliased template., (*28)
A few things to remember when using partials:, (*29)
- The parent template may change tag delimiters, but if you want to use the
same delimiters in your partial, you will need to make the same declaration.
- The parent template may utilize one or more pragmas, but those declarations
will not perist to the partial; if you want those pragmas, you must reference
them in your partial.
Basically, partials render in their own scope. If you remember that one rule,
you should have no problems., (*30)
Hierarchical Views and Placeholders
(Available in versions 1.1.0 and up)., (*31)
Placeholders are basically unnamed sections, and are denoted by the combination
of {{$name}}
and {{/name}}
. When encountered by the renderer, any mustache
content within will be rendered as normal mustache content., (*32)
Placeholders are primarily of use with the concept of hierarchical views. These
are denoted by the combination of {{<name}}
and {{/name}}
. When encountered,
the template denoted by name
will be tokenized, and any placeholders that are
defined in the content will be used to replace those found in the parent
template., (*33)
As an example, consider the following parent template, "super.mustache":, (*34)
<html>
<head><title>{{$title}}Default title{{/title}}</title></head>
<body>
<div class="content">
{{$content}}Default content of the page{{/content}}
</div>
</body>
</html>
If rendered by itself, it will result in the following:, (*35)
<html>
<head><title>Default title</title></head>
<body>
<div class="content">
Default content of the page
</div>
</body>
</html>
Now, consider the following child template, "sub.mustache":, (*36)
{{<super}}
{{$title}}Profile of {{username}}{{/title}}
{{$content}}
Here is {{username}}'s profile page
{{/content}}
{{/super}}
If we have a view that defines "username" as "Matthew" and render
"sub.mustache", we'll get the following:, (*37)
<html>
<head><title>Profile of Matthew</title></head>
<body>
<div class="content">
Here is Matthew's profile page
</div>
</body>
</html>
Notice how the child retains the view context of the parent, and that all
mustache tokens defined in it are rendered as if they were simply another
mustache template., (*38)
Hierarchical templates may be nested arbitrarily deep., (*39)
(This feature was inspired by https://gist.github.com/1854699), (*40)
Whitespace Stripping
Because this is a very literal compiler, whitespace can sometimes be an issue. A
number of measures have been built in to reduce such issues by stripping
whitespace (primarily newlines) surrounding certain tokens, but they come at a
slight performance penalty., (*41)
For markup languages like XML, XHTML or HTML5, you likely will not run into
issues in the final rendered output. As such, you can optionally disable
whitespace stripping:, (*42)
$mustache->getLexer()->disableStripWhitespace(true);
Caching Tokens
Tokens from parsed templates may be cached for later usage; alternately, a new
instance of phly_mustache may be seeded with cached tokens from a previous
instance., (*43)
To get the list of tokens, use the following:, (*44)
$tokens = $mustache->getAllTokens();
This will return a list of template name/token list pairs, based on the
templates compiled by this instance. You may then seed another instance using
the following:, (*45)
$mustache->restoreTokens($tokens);
This will overwrite any tokens already compiled by that instance., (*46)
Since the tokens are template name/token list pairs, you can safely pass them to
array_merge(), allowing multiple instances of phly_mustache to build up a large
cache of template tokens. This will greatly improve performance when rendering
templates on subsequent calls -- particularly if you cache the tokens in a
memory store such as memcached., (*47)
Pragmas
Pragmas are tags of the form:, (*48)
{{%PRAGMA-NAME option=value}}, (*49)
where options are key/value pairs, and are entirely optional. Pragmas are
user-defined, and can be used to extend and/or modify the capabilities of the
renderer., (*50)
Pragmas should implement Phly\Mustache\Pragma, which defines methods for
retrieving the pragma name (used during registration of the pragma, and
referenced by templates; this is case sensitive currently), determining whether
or not the pragma can intercept rendering of a specific token type, and handling
the token., (*51)
Pragmas should be registered before rendering any template that references
them., (*52)
$this->mustache->getRenderer()->addPragma($pragmaObject);
// ...
$this->mustache->render(/*...*/);
When declared in a template, they exist for the duration of the current
scope, which means:, (*53)
- If declared in a section, they apply to that section and any child sections
only
- If declared for a file, they apply to that file and all child sections only
- Pragmas are never passed on to partials; each partial is rendered with an
empty set of pragmas, and must declare any pragmas it requires for
appropriate rendering.
For ideas on how you might use or implement pragmas, examine the pragmas shipped
with phly_mustache., (*54)
Pragmas shipped with phly_mustache
IMPLICIT-ITERATOR
This pragma allows iteration of indexed arrays or Traversable objects with
scalar values, with the option of specifying the iterator "key" to use within
the template. By default, a variable key "." will be replaced by the current
value of the iterator., (*55)
A sample template:, (*56)
{{#some_iterable_data}}
{{.}}
{{/some_iterable_data}}
To use an explicit iterator key, specify it via the "iterator" option of the
pragma:, (*57)
{{%IMPLICIT-ITERATOR iterator=bob}}
{{#some_iterable_data}}
{{bob}}
{{/some_iterable_data}}
SUB-VIEWS
The Sub-Views pragma allows you to implement the two-step view pattern using
Mustache. When active, any variable whose value is an instance of
Phly\Mustache\Pragma\SubView will be substituted by rendering the template and
view that object encapsulates., (*58)
The SubView class takes a template name and a view as a constructor:, (*59)
use Phly\Mustache\Pragma\SubView;
$subView = new SubView('some-partial', array('name' => 'Matthew'));
That object is then assigned as a value to a view key:, (*60)
$view = new \stdClass;
$view->content = $subView;
The template might look like this:, (*61)
{{!layout}}
{{%SUB-VIEWS}}
<html>
<body>
{{content}}
</body>
</html>
and the partial like this:, (*62)
{{!some-partial}}
Hello, {{name}}!
Rendering the view:, (*63)
use Phly\Mustache\Mustache,
Phly\Mustache\Pragma\SubViews;
$mustache = new Mustache();
$subViews = new SubViews($mustache);
$rendered = $mustache->render('layout', $view);
will result in:, (*64)
<html>
<body>
Hello, Matthew!
</body>
</html>
Sub views may be nested, and re-used., (*65)