Volt 模版引擎(Volt: Template Engine) ====================================== Volt 是一个用C为PHP编写的超快的并且对设计师友好的模板语言。Volt 提供一组辅助工具有助于你以一种更简单的的方式编写视图(Views)。 同时,Volt与Phalcon的其他组件高度集成在一起,就像你在应用中单独使用Volt一样。 .. figure:: ../_static/img/volt.jpg :align: center Volt is inspired by Jinja_, originally created by `Armin Ronacher`_. Therefore many developers will be in familiar territory using the same syntax they have been using with similar template engines. Volt's syntax and features have been enhanced with more elements and of course with the performance that developers have been accustomed to while working with Phalcon. 简介(Introduction) -------------------- Volt 视图被编译成纯PHP代码,所以基本上他们节省手工编写PHP代码的工作: .. code-block:: html+jinja {# app/views/products/show.volt #} {% block last_products %} {% for product in products %} * Name: {{ product.name|e }} {% if product.status == "Active" %} Price: {{ product.price + product.taxes/100 }} {% endif %} {% endfor %} {% endblock %} 启用 Volt(Activating Volt) ---------------------------- As with other templating engines, you may register Volt in the view component, using a new extension or reusing the standard .phtml: .. code-block:: php set( 'view', function () { $view = new View(); $view->setViewsDir('../app/views/'); $view->registerEngines( array( ".volt" => 'Phalcon\Mvc\View\Engine\Volt' ) ); return $view; } ); Use the standard ".phtml" extension: .. code-block:: php registerEngines( array( ".phtml" => 'Phalcon\Mvc\View\Engine\Volt' ) ); 基本用法(Basic Usage) ----------------------- A view consists of Volt code, PHP and HTML. A set of special delimiters is available to enter into Volt mode. :code:`{% ... %}` is used to execute statements such as for-loops or assign values and :code:`{{ ... }}`, prints the result of an expression to the template. Below is a minimal template that illustrates a few basics: .. code-block:: html+jinja {# app/views/posts/show.phtml #} {{ title }} - An example blog {% if show_navigation %} {% endif %}

{{ post.title }}

{{ post.content }}
Using :doc:`Phalcon\\Mvc\\View <../api/Phalcon_Mvc_View>` you can pass variables from the controller to the views. In the above example, three variables were passed to the view: :code:`title`, :code:`menu` and :code:`post`: .. code-block:: php view->title = $post->title; $this->view->post = $post; $this->view->menu = $menu; $this->view->show_navigation = true; // Or... $this->view->setVar("title", $post->title); $this->view->setVar("post", $post); $this->view->setVar("menu", $menu); $this->view->setVar("show_navigation", true); } } 变量(Variables) ----------------- Object variables may have attributes which can be accessed using the syntax: :code:`foo.bar`. If you are passing arrays, you have to use the square bracket syntax: :code:`foo['bar']` .. code-block:: jinja {{ post.title }} {# for $post->title #} {{ post['title'] }} {# for $post['title'] #} 过滤器(Filters) ----------------- Variables can be formatted or modified using filters. The pipe operator :code:`|` is used to apply filters to variables: .. code-block:: jinja {{ post.title|e }} {{ post.content|striptags }} {{ name|capitalize|trim }} The following is the list of available built-in filters in Volt: +--------------------------+------------------------------------------------------------------------------+ | Filter | Description | +==========================+==============================================================================+ | :code:`e` | Applies :code:`Phalcon\Escaper->escapeHtml()` to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`escape` | Applies :code:`Phalcon\Escaper->escapeHtml()` to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`escape_css` | Applies :code:`Phalcon\Escaper->escapeCss()` to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`escape_js` | Applies :code:`Phalcon\Escaper->escapeJs()` to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`escape_attr` | Applies :code:`Phalcon\Escaper->escapeHtmlAttr()` to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`trim` | Applies the trim_ PHP function to the value. Removing extra spaces | +--------------------------+------------------------------------------------------------------------------+ | :code:`left_trim` | Applies the ltrim_ PHP function to the value. Removing extra spaces | +--------------------------+------------------------------------------------------------------------------+ | :code:`right_trim` | Applies the rtrim_ PHP function to the value. Removing extra spaces | +--------------------------+------------------------------------------------------------------------------+ | :code:`striptags` | Applies the striptags_ PHP function to the value. Removing HTML tags | +--------------------------+------------------------------------------------------------------------------+ | :code:`slashes` | Applies the slashes_ PHP function to the value. Escaping values | +--------------------------+------------------------------------------------------------------------------+ | :code:`stripslashes` | Applies the stripslashes_ PHP function to the value. Removing escaped quotes | +--------------------------+------------------------------------------------------------------------------+ | :code:`capitalize` | Capitalizes a string by applying the ucwords_ PHP function to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`lower` | Change the case of a string to lowercase | +--------------------------+------------------------------------------------------------------------------+ | :code:`upper` | Change the case of a string to uppercase | +--------------------------+------------------------------------------------------------------------------+ | :code:`length` | Counts the string length or how many items are in an array or object | +--------------------------+------------------------------------------------------------------------------+ | :code:`nl2br` | Changes newlines \\n by line breaks (
). Uses the PHP function nl2br_ | +--------------------------+------------------------------------------------------------------------------+ | :code:`sort` | Sorts an array using the PHP function asort_ | +--------------------------+------------------------------------------------------------------------------+ | :code:`keys` | Returns the array keys using array_keys_ | +--------------------------+------------------------------------------------------------------------------+ | :code:`join` | Joins the array parts using a separator join_ | +--------------------------+------------------------------------------------------------------------------+ | :code:`format` | Formats a string using sprintf_. | +--------------------------+------------------------------------------------------------------------------+ | :code:`json_encode` | Converts a value into its JSON_ representation | +--------------------------+------------------------------------------------------------------------------+ | :code:`json_decode` | Converts a value from its JSON_ representation to a PHP representation | +--------------------------+------------------------------------------------------------------------------+ | :code:`abs` | Applies the abs_ PHP function to a value. | +--------------------------+------------------------------------------------------------------------------+ | :code:`url_encode` | Applies the urlencode_ PHP function to the value | +--------------------------+------------------------------------------------------------------------------+ | :code:`default` | Sets a default value in case that the evaluated expression is empty | | | (is not set or evaluates to a falsy value) | +--------------------------+------------------------------------------------------------------------------+ | :code:`convert_encoding` | Converts a string from one charset to another | +--------------------------+------------------------------------------------------------------------------+ Examples: .. code-block:: jinja {# e or escape filter #} {{ "

Hello

"|e }} {{ "

Hello

"|escape }} {# trim filter #} {{ " hello "|trim }} {# striptags filter #} {{ "

Hello

"|striptags }} {# slashes filter #} {{ "'this is a string'"|slashes }} {# stripslashes filter #} {{ "\'this is a string\'"|stripslashes }} {# capitalize filter #} {{ "hello"|capitalize }} {# lower filter #} {{ "HELLO"|lower }} {# upper filter #} {{ "hello"|upper }} {# length filter #} {{ "robots"|length }} {{ [1, 2, 3]|length }} {# nl2br filter #} {{ "some\ntext"|nl2br }} {# sort filter #} {% set sorted = [3, 1, 2]|sort %} {# keys filter #} {% set keys = ['first': 1, 'second': 2, 'third': 3]|keys %} {# join filter #} {% set joined = "a".."z"|join(",") %} {# format filter #} {{ "My real name is %s"|format(name) }} {# json_encode filter #} {% set encoded = robots|json_encode %} {# json_decode filter #} {% set decoded = '{"one":1,"two":2,"three":3}'|json_decode %} {# url_encode filter #} {{ post.permanent_link|url_encode }} {# convert_encoding filter #} {{ "désolé"|convert_encoding('utf8', 'latin1') }} 注释(Comments) ---------------- Comments may also be added to a template using the :code:`{# ... #}` delimiters. All text inside them is just ignored in the final output: .. code-block:: jinja {# note: this is a comment {% set price = 100; %} #} 流程控制列表(List of Control Structures) ------------------------------------------ Volt provides a set of basic but powerful control structures for use in templates: 循环语句 For ^^^^^^^^^^^^ Loop over each item in a sequence. The following example shows how to traverse a set of "robots" and print his/her name: .. code-block:: html+jinja

Robots

for-loops can also be nested: .. code-block:: html+jinja

Robots

{% for robot in robots %} {% for part in robot.parts %} Robot: {{ robot.name|e }} Part: {{ part.name|e }}
{% endfor %} {% endfor %} You can get the element "keys" as in the PHP counterpart using the following syntax: .. code-block:: html+jinja {% set numbers = ['one': 1, 'two': 2, 'three': 3] %} {% for name, value in numbers %} Name: {{ name }} Value: {{ value }} {% endfor %} An "if" evaluation can be optionally set: .. code-block:: html+jinja {% set numbers = ['one': 1, 'two': 2, 'three': 3] %} {% for value in numbers if value < 2 %} Value: {{ value }} {% endfor %} {% for name, value in numbers if name != 'two' %} Name: {{ name }} Value: {{ value }} {% endfor %} If an 'else' is defined inside the 'for', it will be executed if the expression in the iterator result in zero iterations: .. code-block:: html+jinja

Robots

{% for robot in robots %} Robot: {{ robot.name|e }} Part: {{ part.name|e }}
{% else %} There are no robots to show {% endfor %} Alternative syntax: .. code-block:: html+jinja

Robots

{% for robot in robots %} Robot: {{ robot.name|e }} Part: {{ part.name|e }}
{% elsefor %} There are no robots to show {% endfor %} 循环控制(Loop Controls) ^^^^^^^^^^^^^^^^^^^^^^^^^ The 'break' and 'continue' statements can be used to exit from a loop or force an iteration in the current block: .. code-block:: html+jinja {# skip the even robots #} {% for index, robot in robots %} {% if index is even %} {% continue %} {% endif %} ... {% endfor %} .. code-block:: html+jinja {# exit the foreach on the first even robot #} {% for index, robot in robots %} {% if index is even %} {% break %} {% endif %} ... {% endfor %} 条件判断语句 If ^^^^^^^^^^^^^^^ As PHP, an "if" statement checks if an expression is evaluated as true or false: .. code-block:: html+jinja

Cyborg Robots

The else clause is also supported: .. code-block:: html+jinja

Robots

The 'elseif' control flow structure can be used together with if to emulate a 'switch' block: .. code-block:: html+jinja {% if robot.type == "cyborg" %} Robot is a cyborg {% elseif robot.type == "virtual" %} Robot is virtual {% elseif robot.type == "mechanical" %} Robot is mechanical {% endif %} 循环上下文(Loop Context) ^^^^^^^^^^^^^^^^^^^^^^^^^^ A special variable is available inside 'for' loops providing you information about +------------------------+---------------------------------------------------------------+ | Variable | Description | +========================+===============================================================+ | :code:`loop.index` | The current iteration of the loop. (1 indexed) | +------------------------+---------------------------------------------------------------+ | :code:`loop.index0` | The current iteration of the loop. (0 indexed) | +------------------------+---------------------------------------------------------------+ | :code:`loop.revindex` | The number of iterations from the end of the loop (1 indexed) | +------------------------+---------------------------------------------------------------+ | :code:`loop.revindex0` | The number of iterations from the end of the loop (0 indexed) | +------------------------+---------------------------------------------------------------+ | :code:`loop.first` | True if in the first iteration. | +------------------------+---------------------------------------------------------------+ | :code:`loop.last` | True if in the last iteration. | +------------------------+---------------------------------------------------------------+ | :code:`loop.length` | The number of items to iterate | +------------------------+---------------------------------------------------------------+ .. code-block:: html+jinja {% for robot in robots %} {% if loop.first %} {% endif %} {% if loop.last %}
# Id Name
{{ loop.index }} {{ robot.id }} {{ robot.name }}
{% endif %} {% endfor %} 赋值(Assignments) ------------------- Variables may be changed in a template using the instruction "set": .. code-block:: html+jinja {% set fruits = ['Apple', 'Banana', 'Orange'] %} {% set name = robot.name %} Multiple assignments are allowed in the same instruction: .. code-block:: html+jinja {% set fruits = ['Apple', 'Banana', 'Orange'], name = robot.name, active = true %} Additionally, you can use compound assignment operators: .. code-block:: html+jinja {% set price += 100.00 %} {% set age *= 5 %} The following operators are available: +----------------------+------------------------------------------------------------------------------+ | Operator | Description | +======================+==============================================================================+ | = | Standard Assignment | +----------------------+------------------------------------------------------------------------------+ | += | Addition assignment | +----------------------+------------------------------------------------------------------------------+ | -= | Subtraction assignment | +----------------------+------------------------------------------------------------------------------+ | \*= | Multiplication assignment | +----------------------+------------------------------------------------------------------------------+ | /= | Division assignment | +----------------------+------------------------------------------------------------------------------+ 表达式(Expressions) --------------------- Volt provides a basic set of expression support, including literals and common operators. A expression can be evaluated and printed using the '{{' and '}}' delimiters: .. code-block:: html+jinja {{ (1 + 1) * 2 }} If an expression needs to be evaluated without be printed the 'do' statement can be used: .. code-block:: html+jinja {% do (1 + 1) * 2 %} 字面值(Literals) ^^^^^^^^^^^^^^^^^^ The following literals are supported: +----------------------+------------------------------------------------------------------------------+ | Filter | Description | +======================+==============================================================================+ | "this is a string" | Text between double quotes or single quotes are handled as strings | +----------------------+------------------------------------------------------------------------------+ | 100.25 | Numbers with a decimal part are handled as doubles/floats | +----------------------+------------------------------------------------------------------------------+ | 100 | Numbers without a decimal part are handled as integers | +----------------------+------------------------------------------------------------------------------+ | false | Constant "false" is the boolean false value | +----------------------+------------------------------------------------------------------------------+ | true | Constant "true" is the boolean true value | +----------------------+------------------------------------------------------------------------------+ | null | Constant "null" is the Null value | +----------------------+------------------------------------------------------------------------------+ 数组(Arrays) ^^^^^^^^^^^^^^ Whether you're using PHP 5.3 or >= 5.4 you can create arrays by enclosing a list of values in square brackets: .. code-block:: html+jinja {# Simple array #} {{ ['Apple', 'Banana', 'Orange'] }} {# Other simple array #} {{ ['Apple', 1, 2.5, false, null] }} {# Multi-Dimensional array #} {{ [[1, 2], [3, 4], [5, 6]] }} {# Hash-style array #} {{ ['first': 1, 'second': 4/2, 'third': '3'] }} Curly braces also can be used to define arrays or hashes: .. code-block:: html+jinja {% set myArray = {'Apple', 'Banana', 'Orange'} %} {% set myHash = {'first': 1, 'second': 4/2, 'third': '3'} %} 算术运算(Math) ^^^^^^^^^^^^^^^^ You may make calculations in templates using the following operators: +-----------+-------------------------------------------------------------------------------+ | Operator | Description | +===========+===============================================================================+ | :code:`+` | Perform an adding operation. :code:`{{ 2 + 3 }}` returns 5 | +-----------+-------------------------------------------------------------------------------+ | :code:`-` | Perform a substraction operation :code:`{{ 2 - 3 }}` returns -1 | +-----------+-------------------------------------------------------------------------------+ | :code:`*` | Perform a multiplication operation :code:`{{ 2 * 3 }}` returns 6 | +-----------+-------------------------------------------------------------------------------+ | :code:`/` | Perform a division operation :code:`{{ 10 / 2 }}` returns 5 | +-----------+-------------------------------------------------------------------------------+ | :code:`%` | Calculate the remainder of an integer division :code:`{{ 10 % 3 }}` returns 1 | +-----------+-------------------------------------------------------------------------------+ 比较运算(Comparisons) ^^^^^^^^^^^^^^^^^^^^^^^ The following comparison operators are available: +-------------+-------------------------------------------------------------------+ | Operator | Description | +=============+===================================================================+ | :code:`==` | Check whether both operands are equal | +-------------+-------------------------------------------------------------------+ | :code:`!=` | Check whether both operands aren't equal | +-------------+-------------------------------------------------------------------+ | :code:`<>` | Check whether both operands aren't equal | +-------------+-------------------------------------------------------------------+ | :code:`>` | Check whether left operand is greater than right operand | +-------------+-------------------------------------------------------------------+ | :code:`<` | Check whether left operand is less than right operand | +-------------+-------------------------------------------------------------------+ | :code:`<=` | Check whether left operand is less or equal than right operand | +-------------+-------------------------------------------------------------------+ | :code:`>=` | Check whether left operand is greater or equal than right operand | +-------------+-------------------------------------------------------------------+ | :code:`===` | Check whether both operands are identical | +-------------+-------------------------------------------------------------------+ | :code:`!==` | Check whether both operands aren't identical | +-------------+-------------------------------------------------------------------+ 逻辑运算(Logic) ^^^^^^^^^^^^^^^^^ Logic operators are useful in the "if" expression evaluation to combine multiple tests: +------------------+-------------------------------------------------------------------+ | Operator | Description | +==================+===================================================================+ | :code:`or` | Return true if the left or right operand is evaluated as true | +------------------+-------------------------------------------------------------------+ | :code:`and` | Return true if both left and right operands are evaluated as true | +------------------+-------------------------------------------------------------------+ | :code:`not` | Negates an expression | +------------------+-------------------------------------------------------------------+ | :code:`( expr )` | Parenthesis groups expressions | +------------------+-------------------------------------------------------------------+ 其他操作(Other Operators) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Additional operators seen the following operators are available: +-------------------------+---------------------------------------------------------------------------------------+ | Operator | Description | +=========================+=======================================================================================+ | :code:`~` | Concatenates both operands :code:`{{ "hello " ~ "world" }}` | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`|` | Applies a filter in the right operand to the left :code:`{{ "hello"|uppercase }}` | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`..` | Creates a range :code:`{{ 'a'..'z' }}` :code:`{{ 1..10 }}` | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`is` | Same as == (equals), also performs tests | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`in` | To check if an expression is contained into other expressions :code:`if "a" in "abc"` | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`is not` | Same as != (not equals) | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`'a' ? 'b' : 'c'` | Ternary operator. The same as the PHP ternary operator | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`++` | Increments a value | +-------------------------+---------------------------------------------------------------------------------------+ | :code:`--` | Decrements a value | +-------------------------+---------------------------------------------------------------------------------------+ The following example shows how to use operators: .. code-block:: html+jinja {% set robots = ['Voltron', 'Astro Boy', 'Terminator', 'C3PO'] %} {% for index in 0..robots|length %} {% if robots[index] is defined %} {{ "Name: " ~ robots[index] }} {% endif %} {% endfor %} 测试运算(Tests) ----------------- Tests can be used to test if a variable has a valid expected value. The operator "is" is used to perform the tests: .. code-block:: html+jinja {% set robots = ['1': 'Voltron', '2': 'Astro Boy', '3': 'Terminator', '4': 'C3PO'] %} {% for position, name in robots %} {% if position is odd %} {{ name }} {% endif %} {% endfor %} The following built-in tests are available in Volt: +---------------------+----------------------------------------------------------------------+ | Test | Description | +=====================+======================================================================+ | :code:`defined` | Checks if a variable is defined (:code:`isset()`) | +---------------------+----------------------------------------------------------------------+ | :code:`empty` | Checks if a variable is empty | +---------------------+----------------------------------------------------------------------+ | :code:`even` | Checks if a numeric value is even | +---------------------+----------------------------------------------------------------------+ | :code:`odd` | Checks if a numeric value is odd | +---------------------+----------------------------------------------------------------------+ | :code:`numeric` | Checks if value is numeric | +---------------------+----------------------------------------------------------------------+ | :code:`scalar` | Checks if value is scalar (not an array or object) | +---------------------+----------------------------------------------------------------------+ | :code:`iterable` | Checks if a value is iterable. Can be traversed by a "for" statement | +---------------------+----------------------------------------------------------------------+ | :code:`divisibleby` | Checks if a value is divisible by other value | +---------------------+----------------------------------------------------------------------+ | :code:`sameas` | Checks if a value is identical to other value | +---------------------+----------------------------------------------------------------------+ | :code:`type` | Checks if a value is of the specified type | +---------------------+----------------------------------------------------------------------+ More examples: .. code-block:: html+jinja {% if robot is defined %} The robot variable is defined {% endif %} {% if robot is empty %} The robot is null or isn't defined {% endif %} {% for key, name in [1: 'Voltron', 2: 'Astroy Boy', 3: 'Bender'] %} {% if key is even %} {{ name }} {% endif %} {% endfor %} {% for key, name in [1: 'Voltron', 2: 'Astroy Boy', 3: 'Bender'] %} {% if key is odd %} {{ name }} {% endif %} {% endfor %} {% for key, name in [1: 'Voltron', 2: 'Astroy Boy', 'third': 'Bender'] %} {% if key is numeric %} {{ name }} {% endif %} {% endfor %} {% set robots = [1: 'Voltron', 2: 'Astroy Boy'] %} {% if robots is iterable %} {% for robot in robots %} ... {% endfor %} {% endif %} {% set world = "hello" %} {% if world is sameas("hello") %} {{ "it's hello" }} {% endif %} {% set external = false %} {% if external is type('boolean') %} {{ "external is false or true" }} {% endif %} 宏定义(Macros) ---------------- Macros can be used to reuse logic in a template, they act as PHP functions, can receive parameters and return values: .. code-block:: html+jinja {# Macro "display a list of links to related topics" #} {%- macro related_bar(related_links) %} {%- endmacro %} {# Print related links #} {{ related_bar(links) }}
This is the content
{# Print related links again #} {{ related_bar(links) }} When calling macros, parameters can be passed by name: .. code-block:: html+jinja {%- macro error_messages(message, field, type) %}
{{ type }} {{ field }} {{ message }}
{%- endmacro %} {# Call the macro #} {{ error_messages('type': 'Invalid', 'message': 'The name is invalid', 'field': 'name') }} Macros can return values: .. code-block:: html+jinja {%- macro my_input(name, class) %} {% return text_field(name, 'class': class) %} {%- endmacro %} {# Call the macro #} {{ '

' ~ my_input('name', 'input-text') ~ '

' }} And receive optional parameters: .. code-block:: html+jinja {%- macro my_input(name, class="input-text") %} {% return text_field(name, 'class': class) %} {%- endmacro %} {# Call the macro #} {{ '

' ~ my_input('name') ~ '

' }} {{ '

' ~ my_input('name', 'input-text') ~ '

' }} 使用标签助手(Using Tag Helpers) --------------------------------- Volt is highly integrated with :doc:`Phalcon\\Tag `, so it's easy to use the helpers provided by that component in a Volt template: .. code-block:: html+jinja {{ javascript_include("js/jquery.js") }} {{ form('products/save', 'method': 'post') }} {{ text_field("name", "size": 32) }} {{ select("type", productTypes, 'using': ['id', 'name']) }} {{ submit_button('Send') }} {{ end_form() }} The following PHP is generated: .. code-block:: html+php 'post')); ?> 32)); ?> array('id', 'name'))); ?> {{ end_form() }} To call a :doc:`Phalcon\\Tag <../api/Phalcon_Tag>` helper, you only need to call an uncamelized version of the method: +-----------------------------------------+----------------------------+ | Method | Volt function | +=========================================+============================+ | :code:`Phalcon\Tag::linkTo` | :code:`link_to` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::textField` | :code:`text_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::passwordField` | :code:`password_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::hiddenField` | :code:`hidden_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::fileField` | :code:`file_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::checkField` | :code:`check_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::radioField` | :code:`radio_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::dateField` | :code:`date_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::emailField` | :code:`email_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::numericField` | :code:`numeric_field` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::submitButton` | :code:`submit_button` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::selectStatic` | :code:`select_static` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::select` | :code:`select` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::textArea` | :code:`text_area` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::form` | :code:`form` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::endForm` | :code:`end_form` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::getTitle` | :code:`get_title` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::stylesheetLink` | :code:`stylesheet_link` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::javascriptInclude` | :code:`javascript_include` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::image` | :code:`image` | +-----------------------------------------+----------------------------+ | :code:`Phalcon\Tag::friendlyTitle` | :code:`friendly_title` | +-----------------------------------------+----------------------------+ 函数(Functions) ----------------- The following built-in functions are available in Volt: +---------------------+-------------------------------------------------------------+ | Name | Description | +=====================+=============================================================+ | :code:`content` | Includes the content produced in a previous rendering stage | +---------------------+-------------------------------------------------------------+ | :code:`get_content` | Same as :code:`content` | +---------------------+-------------------------------------------------------------+ | :code:`partial` | Dynamically loads a partial view in the current template | +---------------------+-------------------------------------------------------------+ | :code:`super` | Render the contents of the parent block | +---------------------+-------------------------------------------------------------+ | :code:`time` | Calls the PHP function with the same name | +---------------------+-------------------------------------------------------------+ | :code:`date` | Calls the PHP function with the same name | +---------------------+-------------------------------------------------------------+ | :code:`dump` | Calls the PHP function :code:`var_dump()` | +---------------------+-------------------------------------------------------------+ | :code:`version` | Returns the current version of the framework | +---------------------+-------------------------------------------------------------+ | :code:`constant` | Reads a PHP constant | +---------------------+-------------------------------------------------------------+ | :code:`url` | Generate a URL using the 'url' service | +---------------------+-------------------------------------------------------------+ 视图集成(View Integration) ---------------------------- Also, Volt is integrated with :doc:`Phalcon\\Mvc\\View `, you can play with the view hierarchy and include partials as well: .. code-block:: html+jinja {{ content() }} A partial is included in runtime, Volt also provides "include", this compiles the content of a view and returns its contents as part of the view which was included: .. code-block:: html+jinja {# Simple include of a partial #} {# Passing extra variables #} 包含(Include) ^^^^^^^^^^^^^^^ 'include' has a special behavior that will help us improve performance a bit when using Volt, if you specify the extension when including the file and it exists when the template is compiled, Volt can inline the contents of the template in the parent template where it's included. Templates aren't inlined if the 'include' have variables passed with 'with': .. code-block:: html+jinja {# The contents of 'partials/footer.volt' is compiled and inlined #} Partial vs Include ^^^^^^^^^^^^^^^^^^ Keep the following points in mind when choosing to use the "partial" function or "include": * 'Partial' allows you to include templates made in Volt and in other template engines as well * 'Partial' allows you to pass an expression like a variable allowing to include the content of other view dynamically * 'Partial' is better if the content that you have to include changes frequently * 'Include' copies the compiled content into the view which improves the performance * 'Include' only allows to include templates made with Volt * 'Include' requires an existing template at compile time 模版的继承(Template Inheritance) ---------------------------------- With template inheritance you can create base templates that can be extended by others templates allowing to reuse code. A base template define *blocks* than can be overridden by a child template. Let's pretend that we have the following base template: .. code-block:: html+jinja {# templates/base.volt #} {% block head %} {% endblock %} {% block title %}{% endblock %} - My Webpage
{% block content %}{% endblock %}
From other template we could extend the base template replacing the blocks: .. code-block:: jinja {% extends "templates/base.volt" %} {% block title %}Index{% endblock %} {% block head %}{% endblock %} {% block content %}

Index

Welcome on my awesome homepage.

{% endblock %} Not all blocks must be replaced at a child template, only those that are needed. The final output produced will be the following: .. code-block:: html Index - My Webpage

Index

Welcome on my awesome homepage.

多重继承(Multiple Inheritance) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Extended templates can extend other templates. The following example illustrates this: .. code-block:: html+jinja {# main.volt #} Title {% block content %}{% endblock %} Template "layout.volt" extends "main.volt" .. code-block:: html+jinja {# layout.volt #} {% extends "main.volt" %} {% block content %}

Table of contents

{% endblock %} Finally a view that extends "layout.volt": .. code-block:: html+jinja {# index.volt #} {% extends "layout.volt" %} {% block content %} {{ super() }} {% endblock %} Rendering "index.volt" produces: .. code-block:: html Title

Table of contents

Note the call to the function :code:`super()`. With that function it's possible to render the contents of the parent block. As partials, the path set to "extends" is a relative path under the current views directory (i.e. app/views/). .. highlights:: By default, and for performance reasons, Volt only checks for changes in the children templates to know when to re-compile to plain PHP again, so it is recommended initialize Volt with the option :code:`'compileAlways' => true`. Thus, the templates are compiled always taking into account changes in the parent templates. 自动编码模式(Autoescape mode) ------------------------------- You can enable auto-escaping of all variables printed in a block using the autoescape mode: .. code-block:: html+jinja Manually escaped: {{ robot.name|e }} {% autoescape true %} Autoescaped: {{ robot.name }} {% autoescape false %} No Autoescaped: {{ robot.name }} {% endautoescape %} {% endautoescape %} 配置 Volt 引擎(Setting up the Volt Engine) -------------------------------------------- Volt can be configured to alter its default behavior, the following example explain how to do that: .. code-block:: php set( 'voltService', function ($view, $di) { $volt = new Volt($view, $di); $volt->setOptions( array( "compiledPath" => "../app/compiled-templates/", "compiledExtension" => ".compiled" ) ); return $volt; } ); // Register Volt as template engine $di->set( 'view', function () { $view = new View(); $view->setViewsDir('../app/views/'); $view->registerEngines( array( ".volt" => 'voltService' ) ); return $view; } ); If you do not want to reuse Volt as a service you can pass an anonymous function to register the engine instead of a service name: .. code-block:: php set( 'view', function () { $view = new \Phalcon\Mvc\View(); $view->setViewsDir('../app/views/'); $view->registerEngines( array( ".volt" => function ($view, $di) { $volt = new Volt($view, $di); // Set some options here return $volt; } ) ); return $view; } ); The following options are available in Volt: +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | Option | Description | Default | +===========================+==============================================================================================================================+=========+ | :code:`compiledPath` | A writable path where the compiled PHP templates will be placed | ./ | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`compiledExtension` | An additional extension appended to the compiled PHP file | .php | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`compiledSeparator` | Volt replaces the directory separators / and \\ by this separator in order to create a single file in the compiled directory | %% | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`stat` | Whether Phalcon must check if exists differences between the template file and its compiled path | true | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`compileAlways` | Tell Volt if the templates must be compiled in each request or only when they change | false | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`prefix` | Allows to prepend a prefix to the templates in the compilation path | null | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ | :code:`autoescape` | Enables globally autoescape of HTML | false | +---------------------------+------------------------------------------------------------------------------------------------------------------------------+---------+ The compilation path is generated according to the above options, if the developer wants total freedom defining the compilation path, an anonymous function can be used to generate it, this function receives the relative path to the template in the views directory. The following examples show how to change the compilation path dynamically: .. code-block:: php setOptions( array( 'compiledPath' => function ($templatePath) { return $templatePath . '.php'; } ) ); // Recursively create the same structure in another directory $volt->setOptions( array( 'compiledPath' => function ($templatePath) { $dirName = dirname($templatePath); if (!is_dir('cache/' . $dirName)) { mkdir('cache/' . $dirName); } return 'cache/' . $dirName . '/'. $templatePath . '.php'; } ) ); 扩展 Volt(Extending Volt) --------------------------- Unlike other template engines, Volt itself is not required to run the compiled templates. Once the templates are compiled there is no dependence on Volt. With performance independence in mind, Volt only acts as a compiler for PHP templates. The Volt compiler allow you to extend it adding more functions, tests or filters to the existing ones. 函数(Functions) ^^^^^^^^^^^^^^^^^ Functions act as normal PHP functions, a valid string name is required as function name. Functions can be added using two strategies, returning a simple string or using an anonymous function. Always is required that the chosen strategy returns a valid PHP string expression: .. code-block:: php getCompiler(); // This binds the function name 'shuffle' in Volt to the PHP function 'str_shuffle' $compiler->addFunction('shuffle', 'str_shuffle'); Register the function with an anonymous function. This case we use :code:`$resolvedArgs` to pass the arguments exactly as were passed in the arguments: .. code-block:: php addFunction( 'widget', function ($resolvedArgs, $exprArgs) { return 'MyLibrary\Widgets::get(' . $resolvedArgs . ')'; } ); Treat the arguments independently and unresolved: .. code-block:: php addFunction( 'repeat', function ($resolvedArgs, $exprArgs) use ($compiler) { // Resolve the first argument $firstArgument = $compiler->expression($exprArgs[0]['expr']); // Checks if the second argument was passed if (isset($exprArgs[1])) { $secondArgument = $compiler->expression($exprArgs[1]['expr']); } else { // Use '10' as default $secondArgument = '10'; } return 'str_repeat(' . $firstArgument . ', ' . $secondArgument . ')'; } ); Generate the code based on some function availability: .. code-block:: php addFunction( 'contains_text', function ($resolvedArgs, $exprArgs) { if (function_exists('mb_stripos')) { return 'mb_stripos(' . $resolvedArgs . ')'; } else { return 'stripos(' . $resolvedArgs . ')'; } } ); Built-in functions can be overridden adding a function with its name: .. code-block:: php addFunction('dump', 'print_r'); 过滤器(Filters) ^^^^^^^^^^^^^^^^^ A filter has the following form in a template: leftExpr|name(optional-args). Adding new filters is similar as seen with the functions: .. code-block:: php addFilter('hash', 'md5'); .. code-block:: php addFilter( 'int', function ($resolvedArgs, $exprArgs) { return 'intval(' . $resolvedArgs . ')'; } ); Built-in filters can be overridden adding a function with its name: .. code-block:: php addFilter('capitalize', 'lcfirst'); 扩展(Extensions) ^^^^^^^^^^^^^^^^^^ With extensions the developer has more flexibility to extend the template engine, and override the compilation of a specific instruction, change the behavior of an expression or operator, add functions/filters, and more. An extension is a class that implements the events triggered by Volt as a method of itself. For example, the class below allows to use any PHP function in Volt: .. code-block:: php addExtension(new PhpFunctionExtension()); 缓存视图片段(Caching view fragments) -------------------------------------- With Volt it's easy cache view fragments. This caching improves performance preventing that the contents of a block from being executed by PHP each time the view is displayed: .. code-block:: html+jinja {% cache "sidebar" %} {% endcache %} Setting a specific number of seconds: .. code-block:: html+jinja {# cache the sidebar by 1 hour #} {% cache "sidebar" 3600 %} {% endcache %} Any valid expression can be used as cache key: .. code-block:: html+jinja {% cache ("article-" ~ post.id) 3600 %}

{{ post.title }}

{{ post.content }}

{% endcache %} The caching is done by the :doc:`Phalcon\\Cache ` component via the view component. Learn more about how this integration works in the section :doc:`"Caching View Fragments" `. 注入服务到模版(Inject Services into a Template) ------------------------------------------------- If a service container (DI) is available for Volt, you can use the services by only accessing the name of the service in the template: .. code-block:: html+jinja {# Inject the 'flash' service #}
{{ flash.output() }}
{# Inject the 'security' service #} 独立的组件(Stand-alone component) ----------------------------------- Using Volt in a stand-alone mode can be demonstrated below: .. code-block:: php setOptions( array( // ... ) ); // Compile a template string returning PHP code echo $compiler->compileString('{{ "hello" }}'); // Compile a template in a file specifying the destination file $compiler->compileFile('layouts/main.volt', 'cache/layouts/main.volt.php'); // Compile a template in a file based on the options passed to the compiler $compiler->compile('layouts/main.volt'); // Require the compiled templated (optional) require $compiler->getCompiledTemplatePath(); 外部资源(External Resources) ------------------------------ * A bundle for Sublime/Textmate is available `here `_ * `Album-O-Rama `_ is a sample application using Volt as template engine, [`Album-O-Rama on Github `_] * `Our website `_ is running using Volt as template engine, [`Our website on Github `_] * `Phosphorum `_, the Phalcon's forum, also uses Volt, [`Phosphorum on Github `_] * `Vökuró `_, is another sample application that use Volt, [`Vökuró on Github `_] .. _Armin Ronacher: https://github.com/mitsuhiko .. _Twig: https://github.com/vito/chyrp/wiki/Twig-Reference .. _Jinja: http://jinja.pocoo.org/ .. _trim: http://php.net/manual/en/function.trim.php .. _ltrim: http://php.net/manual/en/function.ltrim.php .. _rtrim: http://php.net/manual/en/function.rtrim.php .. _striptags: http://php.net/manual/en/function.striptags.php .. _slashes: http://php.net/manual/en/function.slashes.php .. _stripslashes: http://php.net/manual/en/function.stripslashes.php .. _ucwords: http://php.net/manual/en/function.ucwords.php .. _nl2br: http://php.net/manual/en/function.nl2br.php .. _asort: http://php.net/manual/en/function.asort.php .. _array_keys: http://php.net/manual/en/function.array-keys.php .. _abs: http://php.net/manual/en/function.abs.php .. _urlencode: http://php.net/manual/en/function.urlencode.php .. _sprintf: http://php.net/manual/en/function.sprintf.php .. _join: http://php.net/manual/en/function.join.php .. _JSON: http://php.net/manual/en/function.json-encode.php