コード例 #1
0
 /**
  * Tests that exception is thrown if wrong number of arguments is used.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider wrongArgumentsProvider
  */
 public function testArgumentsCount($template)
 {
     $storage = new BlockStorage();
     $helpers = new \Handlebars\Helpers(array('override' => new OverrideHelper($storage)));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render($template, array());
 }
コード例 #2
0
 /**
  * Render given template using supplied data
  *
  * @param $path string Path to template file (absolute)
  * @param $data array Data to be rendered
  * @return string Template output
  */
 public function render($path, $data)
 {
     wfProfileIn(__METHOD__);
     $templateName = $this->extractTemplateNameFromPath($path);
     $templateDir = $this->extractTemplateDirFromPath($path);
     $partialsDir = $templateDir . DIRECTORY_SEPARATOR . self::PARTIALS_DIRECTORY;
     $partials = is_dir($partialsDir) ? $partialsDir : $templateDir;
     wfProfileIn(__METHOD__ . " - template: {$path}");
     $handlebars = new \Handlebars\Handlebars();
     $handlebars->setLoader(new \Handlebars\Loader\FilesystemLoader($templateDir));
     $handlebars->setPartialsLoader(new \Handlebars\Loader\FilesystemLoader($partials, ['prefix' => self::PARTIALS_PREFIX]));
     $contents = $handlebars->render($templateName, $data);
     wfProfileOut(__METHOD__ . " - template: {$path}");
     wfProfileOut(__METHOD__);
     return $contents;
 }
コード例 #3
0
 /**
  * Tests that conditions related with inheritance works as expected.
  */
 public function testConditions()
 {
     $storage = new BlockStorage();
     $helpers = new \Handlebars\Helpers(array('block' => new BlockHelper($storage), 'extends' => new ExtendsHelper($storage), 'override' => new OverrideHelper($storage), 'ifOverridden' => new IfOverriddenHelper($storage), 'unlessOverridden' => new UnlessOverriddenHelper($storage)));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     // Test "ifOverridden" helper
     $engine->setLoader(new \Handlebars\Loader\ArrayLoader(array('parent' => '{{#block "name"}}{{/block}}{{#ifOverridden "name"}}true{{else}}false{{/ifOverridden}}', 'child' => '{{#extends "parent"}}{{#override "name"}}{{/override}}{{/extends}}', 'another_child' => '{{#extends "parent"}}{{/extends}}')));
     $this->assertEquals($engine->render('parent', array()), 'false');
     $this->assertEquals($engine->render('child', array()), 'true');
     $this->assertEquals($engine->render('another_child', array()), 'false');
     // Test "unlessOverridden" helper
     $engine->setLoader(new \Handlebars\Loader\ArrayLoader(array('parent' => '{{#block "name"}}{{/block}}{{#unlessOverridden "name"}}false{{else}}true{{/unlessOverridden}}', 'child' => '{{#extends "parent"}}{{#override "name"}}{{/override}}{{/extends}}', 'another_child' => '{{#extends "parent"}}{{/extends}}')));
     $this->assertEquals($engine->render('parent', array()), 'false');
     $this->assertEquals($engine->render('child', array()), 'true');
     $this->assertEquals($engine->render('another_child', array()), 'false');
 }
コード例 #4
0
/**
 * Renders a handlebars template specified by $path, using scope variables defined inside $locals.
 * This function uses config('dispatch.views') for the location of the templates and partials, unless overridden by config('handlebars.views').
 * Settings for 'handlebars.charset' and 'handlebars.layout' are also pulled from config(), if present.
 *
 * @param string $path name of the .handlebars file to render
 * @param array $locals scope variables to load inside the template
 * @param string $layout layout file to use, or flag to not use one
 *
 * @return string rendered code for the template
 */
function handlebars_template($path, $locals = array())
{
    static $engine = null;
    // create the engine once
    if (!$engine) {
        $views_path = config('handlebars.views') ?: config('dispatch.views');
        //
        // Handlebars
        //
        $opts = array('loader' => new \Handlebars\Loader\FilesystemLoader($views_path), 'partials_loader' => new \Handlebars\Loader\FilesystemLoader($views_path, array('prefix' => config('handlebars.partials_prefix') ?: '_')), 'charset' => config('handlebars.charset') ?: 'UTF-8');
        if ($cache_path = config('handlebars.cache')) {
            $opts['cache'] = $cache_path;
        }
        $engine = new Handlebars\Handlebars($opts);
        //
        // Handlebars Helpers
        //
        $helpers = config('handlebars.helpers');
        if ($helpers) {
            foreach ($helpers as $helper => $callback) {
                $engine->addHelper($helper, function ($template, $context, $args, $source) use($callback) {
                    return call_user_func($callback, $template, $context, $args, $source);
                });
            }
        }
        $engine->addHelper('capitalize', function ($template, $context, $args, $source) {
            return ucwords($context->get($args));
        });
        $engine->addHelper('upper', function ($template, $context, $args, $source) {
            return strtoupper($context->get($args));
        });
        $engine->addHelper('lower', function ($template, $context, $args, $source) {
            return strtolower($context->get($args));
        });
        $engine->addHelper('url', function ($template, $context, $args, $source) {
            return config('dispatch.url') . $context->get($args);
        });
    }
    // render partial using $locals
    if (config('handlebars.minify')) {
        return handlebars_minify($engine->render($path, $locals));
    }
    return $engine->render($path, $locals);
}
コード例 #5
0
 /**
  * Tests that exception is thrown if wrong number of arguments is used.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider wrongArgumentsSetProvider
  */
 public function testArgumentsCount($template)
 {
     $helpers = new \Handlebars\Helpers(array('replace' => new ReplaceHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render($template, array());
 }
コード例 #6
0
 /**
  * Tests that exception is thrown if arguments are invalid.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider invalidArgumentsProvider
  */
 public function testInvalidArguments($template)
 {
     $helpers = new \Handlebars\Helpers(array('truncate' => new TruncateHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render($template, array());
 }
コード例 #7
0
 /**
  * Test if and unless adding an extra layer when accessing parent
  */
 public function testIfUnlessExtraLayer()
 {
     $loader = new \Handlebars\Loader\StringLoader();
     $engine = new \Handlebars\Handlebars(array('loader' => $loader));
     $this->assertEquals('good', $engine->render('{{#with b}}{{#if this}}{{../../a}}{{/if}}{{/with}}', array('a' => 'good', 'b' => 'stump')));
     $this->assertEquals('good', $engine->render('{{#with b}}{{#unless false}}{{../../a}}{{/unless}}{{/with}}', array('a' => 'good', 'b' => 'stump')));
 }
コード例 #8
0
 /**
  * Tests invalid arguments type.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider invalidArgumentsProvider
  */
 public function testInvalidArguments($collection)
 {
     $helpers = new \Handlebars\Helpers(array('first' => new FirstHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render('{{first collection}}', array('collection' => $collection));
 }
 /**
  * Tests that exception is thrown if wrong number of arguments is used.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider wrongArgumentsProvider
  */
 public function testArgumentsCount($template)
 {
     $helpers = new \Handlebars\Helpers(array('ifBetweenRightClosed' => new IfBetweenRightClosedHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render($template, array());
 }
コード例 #10
0
 /**
  * Tests that exception is thrown if wrong number of arguments is used.
  *
  * @expectedException InvalidArgumentException
  * @dataProvider wrongArgumentsProvider
  */
 public function testArgumentsCount($template)
 {
     $helpers = new \Handlebars\Helpers(array('unlessEqual' => new UnlessEqualHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render($template, array());
 }
コード例 #11
0
ファイル: index.php プロジェクト: AcuityScheduling/acuity-php
<?php

require_once __DIR__ . '/../../vendor/autoload.php';
require_once '../utils.php';
// Config:
$config = loadConfig();
// Instantiate API class:
$acuity = new AcuityScheduling(array('userId' => $config['userId'], 'apiKey' => $config['apiKey'], 'base' => $config['base']));
$engine = new \Handlebars\Handlebars(array('loader' => new \Handlebars\Loader\FilesystemLoader(__DIR__, array('extension' => '.html'))));
$method = $_SERVER[REQUEST_METHOD];
if ($method === 'GET') {
    $start = true;
    $_SESSION['appointmentType'] = null;
    $_SESSION['date'] = null;
    $_SESSION['time'] = null;
}
if ($method === 'POST') {
    // Start of the flow:
    if (!$_POST) {
        // Fetch appointment types:
        $appointmentTypes = $acuity->request('/appointment-types');
        $_SESSION['appointmentTypes'] = $appointmentTypes;
    } elseif ($_POST['appointmentTypeID']) {
        // Appointment type selected:
        foreach ($_SESSION['appointmentTypes'] as $appointmentType) {
            if ($_POST['appointmentTypeID'] == $appointmentType['id']) {
                $_SESSION['appointmentType'] = $appointmentType;
                break;
            }
        }
        // Time to select a date:
コード例 #12
0
 /**
  * Tests that exception is thrown if arguments are invalid.
  *
  * @expectedException InvalidArgumentException
  */
 public function testInvalidArguments()
 {
     $helpers = new \Handlebars\Helpers(array('repeat' => new RepeatHelper()));
     $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
     $engine->render('{{#repeat -10}}+{{/repeat}}', array());
 }
コード例 #13
0
 /**
  * Test 'root' special variable
  *
  * @param string $template template text
  * @param array  $data     context data
  * @param string $results  The Expected Results
  *
  * @dataProvider rootSpecialVariableProvider
  *
  * @return void
  */
 public function testRootSpecialVariableHelpers($template, $data, $results)
 {
     $engine = new \Handlebars\Handlebars();
     $res = $engine->render($template, $data);
     $this->assertEquals($res, $results);
 }
コード例 #14
0
 /**
  * Test partial loader
  */
 public function testPartialLoader()
 {
     $loader = new \Handlebars\Loader\StringLoader();
     $partialLoader = new \Handlebars\Loader\FilesystemLoader(realpath(__DIR__ . '/../fixture/data'));
     $engine = new \Handlebars\Handlebars();
     $engine->setLoader($loader);
     $engine->setPartialsLoader($partialLoader);
     $this->assertEquals('test', $engine->render('{{>loader}}', array()));
 }