Handlebars processor for php
Go to file
behrooz shabani (everplays) 3a3ab36c5f escape helpers. fixes #42
2014-02-01 11:29:52 +03:30
src/Handlebars escape helpers. fixes #42 2014-02-01 11:29:52 +03:30
tests Add test for helpers auto escaping 2014-01-31 15:12:44 +00:00
.gitignore Add some test, need more test :) just for start 2013-11-07 21:47:57 +03:30
.scrutinizer.yml add inherit: true 2013-11-08 11:16:58 +03:30
.travis.yml there's no need for building php-52 branch in travis 2013-11-19 18:30:23 +03:30
composer.json added CodeSniffer's syntax check as part of travis tests 2013-11-08 00:13:55 +03:30
phpunit.xml.dist Add some test, need more test :) just for start 2013-11-07 21:47:57 +03:30
README.markdown add Code coverage badges 2013-11-08 11:12:03 +03:30

Handlebars.php

Build Status Scrutinizer Quality Score Code Coverage installation

add the following to require property of your composer.json file:

"xamin/handlebars.php": "dev-master" for php 5.3+ "xamin/handlebars.php": "dev-php-52" for php 5.2

then run:

$ composer install

usage

<?php

// uncomment the following two lines, if you don't use composer
// require 'src/Handlebars/Autoloader.php';
// Handlebars\Autoloader::register();

use Handlebars\Handlebars;

$engine = new Handlebars;

echo $engine->render(
    'Planets:<br />{{#each planets}}<h6>{{this}}</h6>{{/each}}',
    array(
        'planets' => array(
            "Mercury",
            "Venus",
            "Earth",
            "Mars"
        )
    )
);
<?php

use Handlebars\Handlebars;

$engine = new Handlebars(array(
    'loader' => new \Handlebars\Loader\FilesystemLoader(__DIR__.'/templates/'),
    'partials_loader' => new \Handlebars\Loader\FilesystemLoader(
        __DIR__ . '/templates/',
        array(
            'prefix' => '_'
        )
    )
));

/* templates/main.handlebars:

{{> partial planets}}

*/

/* templates/_partial.handlebars:

{{#each this}}
    <file>{{this}}</file>
{{/each}}

*/

echo $engine->render(
    'main',
    array(
        'planets' => array(
            "Mercury",
            "Venus",
            "Earth",
            "Mars"
        )
    )
);

contribution

contributions are more than welcome, just don't forget to:

  • add your name to each file that you edit as author
  • use PHP CodeSniffer to check coding style.

license

Copyright (C) 2012-2013 Xamin Project and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.