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: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-10-03
 */
namespace Net\Bazzline\Component\Template;

use RuntimeException;

class ComplexFileBasedTemplate extends AbstractFileBasedTemplate
{
    /**
     * enables support for $this->foo
     * @param string $name
     * @return null|mixed
     */
    public function __get($name)
    {
        return $this->getValueByKeyOrNull($name);
    }

    /**
     * @return string
     * @throws RuntimeException
     */
    public function render()
    {
        $filePath   = $this->getFilePath();
        $variables  = $this->getVariables();

        $this->throwRuntimeExceptionIfFilePathIsInvalid($filePath);

        //enable support for $foo
        extract($variables, EXTR_SKIP);

        ob_start();
        include $filePath;
        $content = ob_get_clean();

        return $content;
    }
}
PHP Template Component by bazzline.net API documentation generated by ApiGen