Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • Template

Classes

  • Net\Bazzline\Component\Template\AbstractFileBasedTemplate
  • Net\Bazzline\Component\Template\AbstractTemplate
  • Net\Bazzline\Component\Template\CallableComplexFileBasedTemplateManager
  • Net\Bazzline\Component\Template\ComplexFileBasedTemplate
  • Net\Bazzline\Component\Template\ExpressiveTemplateAdapter
  • Net\Bazzline\Component\Template\FileBasedTemplate
  • Net\Bazzline\Component\Template\RuntimeContentBasedTemplate
  • Net\Bazzline\Component\Template\TemplateDumper

Interfaces

  • Net\Bazzline\Component\Template\DelimiterInterface
  • Net\Bazzline\Component\Template\TemplateInterface
  • Overview
  • Namespace
  • Class
  1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2016-02-03
 */
namespace Net\Bazzline\Component\Template;

use Zend\Expressive\Template\TemplatePath;
use Zend\Expressive\Template\TemplateRendererInterface;

class ExpressiveTemplateAdapter implements TemplateRendererInterface
{
    /** @var AbstractFileBasedTemplate */
    private $baseTemplate;

    /** @var array */
    private $defaultParameters = array();

    /** @var bool */
    private $defaultParametersProvided = false;

    /** @var array */
    private $fullQualifiedPathNameWithDefaultParameters = array();

    /** @var array|TemplatePath[] */
    private $fullQualifiedPathNameWithTemplatePath = array();

    /**
     * @param AbstractFileBasedTemplate $template
     */
    public function injectBaseTemplate(AbstractFileBasedTemplate $template)
    {
        $this->baseTemplate = $template;
    }

    /**
     * Render a template, optionally with parameters.
     *
     * Implementations MUST support the `namespace::template` naming convention,
     * and allow omitting the filename extension.
     *
     * @param string $name
     * @param array|object $params
     * @return string
     */
    public function render($name, $params = [])
    {
        if (isset($this->fullQualifiedPathNameWithTemplatePath[$name])) {
            $template   = $this->getNewTemplate();
            $path       = $this->fullQualifiedPathNameWithTemplatePath[$name];

            $template->setFilePath($path->getPath() . '.phtml');

            if ($this->defaultParametersProvided) {
                $template->assignMany($this->defaultParameters);
            }

            if (isset($this->fullQualifiedPathNameWithDefaultParameters[$name])) {
                $template->assignMany($this->fullQualifiedPathNameWithDefaultParameters[$name]);
            }

            if (!empty($params)) {
                $template->assignMany($params);
            }

            $content = $template->render();
        } else {
            $content = '';
        }

        return $content;
    }

    /**
     * Add a template path to the engine.
     *
     * Adds a template path, with optional namespace the templates in that path
     * provide.
     *
     * @param string $path
     * @param string $namespace
     */
    public function addPath($path, $namespace = null)
    {
        $key = (is_null($namespace)) ? $path : $namespace . '::' . $path;

        $this->fullQualifiedPathNameWithTemplatePath[$key] = new TemplatePath($path, $namespace);
    }

    /**
     * Retrieve configured paths from the engine.
     *
     * @return TemplatePath[]
     */
    public function getPaths()
    {
        return $this->fullQualifiedPathNameWithTemplatePath;
    }

    /**
     * Add a default parameter to use with a template.
     *
     * Use this method to provide a default parameter to use when a template is
     * rendered. The parameter may be overridden by providing it when calling
     * `render()`, or by calling this method again with a null value.
     *
     * The parameter will be specific to the template name provided. To make
     * the parameter available to any template, pass the TEMPLATE_ALL constant
     * for the template name.
     *
     * If the default parameter existed previously, subsequent invocations with
     * the same template name and parameter name will overwrite.
     *
     * @param string $templateName Name of template to which the param applies;
     *     use TEMPLATE_ALL to apply to all templates.
     * @param string $param Param name.
     * @param mixed $value
     */
    public function addDefaultParam($templateName, $param, $value)
    {
        $isDefaultForAllTemplates = ($templateName === self::TEMPLATE_ALL);

        if ($isDefaultForAllTemplates) {
            $this->defaultParameters[$param] = $value;
            $this->defaultParametersProvided = true;
        } else {
            $this->fullQualifiedPathNameWithDefaultParameters[$templateName] = array($param => $value);
        }
    }

    /**
     * @return AbstractFileBasedTemplate
     */
    private function getNewTemplate()
    {
        return clone $this->baseTemplate;
    }
}
PHP Template Component by bazzline.net API documentation generated by ApiGen