Lines Matching refs:is

30 Handlebars, is the PHP port of [Handlebars.js](http://handlebarsjs.com/)
37 You can just download Handlebars.php as is, or with Composer.
73 Hello, my name is {{name}}
78 The string above can be used as is in your PHP file, or be put in a file (ie: */templates/main.tpl*), to be called upon rendering.
82 Now the we've created our template file, in a php file (index.php) we'll create the data to passed to the model. The model is a key/value array.
122 The simplest way to assign data is to create an Array model. The model will contain all the data that will be passed to the template.
151 Use the method `Handlebars\Handlebars::render($template, $model)` to render you template once everything is created.
174 Let's use this simple model for the following examples, assuming everything is already set like above.
206 The simplest Handlebars expression is a simple identifier:
274 This part will be shown if it is active
276 This part will be shown if it is valid
299 This part will not show if isActive is true
366 You can optionally provide an {{else}} section which will display only when the list is empty.
456 This part will be shown if it is active
458 This part will be shown if it is valid
467 This part will show when isActive is false
558 To use a default value if the string is empty: `{{#default title $defaultValue}}`
565 This helper return handlebars expression as is. The expression will not be parsed
632 You can use comments in your handlebars code just as you would in your code. Since there is generally some level of logic, this is a good practice.
650 which is a file under /templates/my_partial.html
754 When `enableDataVariables` is `false`, existing behavior is not changed where some variables will be return.
761 When `enableDataVariables` is `true`, the behavior matches HandlebarsJS 1.1 behavior, where all data variables replace
762 variables defined in the data and any data variable prefixed with `@` that is unknown will be blank.