ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file Twig.php

Documentation is available at Twig.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Templater
  23.  * @package    ForwardFW
  24.  * @subpackage Templater
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.3
  31.  */
  32.  
  33. /**
  34.  *
  35.  */
  36. require_once 'ForwardFW/Controller.php';
  37. require_once 'ForwardFW/Request.php';
  38. require_once 'ForwardFW/Response.php';
  39. require_once 'ForwardFW/Interface/Templater.php';
  40.  
  41. require_once 'Twig/Autoloader.php';
  42.  
  43. /**
  44.  * Class to use Twig as Templater.
  45.  *
  46.  * @category   Templater
  47.  * @package    ForwardFW
  48.  * @subpackage Templater
  49.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  50.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  51.  * @link       http://forwardfw.sourceforge.net
  52.  */
  53.     implements ForwardFW_Interface_Templater
  54. {
  55.     /**
  56.      * @var Twig_Environment The Twig instance
  57.      */
  58.     private $twigEnvironment = null;
  59.  
  60.     /**
  61.      * @var Twig_Template The loaded template
  62.      */
  63.     private $twigTemplate = null;
  64.  
  65.     /**
  66.      * @var array The array of vars for the template
  67.      */
  68.     private $arVars = array();
  69.  
  70.     /**
  71.      * @var array Blocks to show
  72.      */
  73.     private $arShowBlocks = array();
  74.  
  75.     /**
  76.      * Constructor
  77.      *
  78.      * @param ForwardFW_Interface_Application $application The running application
  79.      *
  80.      * @return void 
  81.      */
  82.     public function __construct(
  83.         ForwardFW_Interface_Application $application
  84.     {
  85.         parent::__construct($application);
  86.  
  87.         Twig_Autoloader::register();
  88.  
  89.         $arConfig $GLOBALS[get_class($this)];
  90.  
  91.         $strCompilePath $arConfig['CompilePath'];
  92.         if (!is_dir($strCompilePath)) {
  93.             mkdir($strCompilePath0770true);
  94.         }
  95.  
  96.         $twigLoader new Twig_Loader_Filesystem($arConfig['TemplatePath']);
  97.         $this->twigEnvironment = new Twig_Environment($twigLoader,
  98.             array(
  99.                 'cache'      => $strCompilePath,
  100.                 'autoescape' => false,
  101.             )
  102.         );
  103.     }
  104.  
  105.     /**
  106.      * Sets file to use for templating
  107.      *
  108.      * @param string $_strFile Complete path and filename.
  109.      *
  110.      * @return ForwardFW_Templater_Twig The instance.
  111.      */
  112.     public function setTemplateFile($_strFile)
  113.     {
  114.         $this->twigTemplate = $this->twigEnvironment->loadTemplate(
  115.             $_strFile
  116.         );
  117.         return $this;
  118.     }
  119.  
  120.     /**
  121.      * Sets a var in the template to a value
  122.      *
  123.      * @param string $_strName Name of template var.
  124.      * @param mixed  $_mValue  Value of template var.
  125.      *
  126.      * @return ForwardFW_Templater_Twig The instance.
  127.      */
  128.     public function setVar($_strName$_mValue)
  129.     {
  130.         $this->arVars[$_strName$_mValue;
  131.         return $this;
  132.     }
  133.  
  134.     /**
  135.      * Returns compiled template for outputing.
  136.      *
  137.      * @return string Content of template after compiling.
  138.      */
  139.     public function getCompiled()
  140.     {
  141.         $result $this->twigTemplate->render(
  142.             $this->arVars
  143.         );
  144.         return $result;
  145.     }
  146.  
  147.     public function defineBlock($strBlockName)
  148.     {
  149.         $this->arShowBlocks[$strBlockName0;
  150.     }
  151.  
  152.     public function showBlock($strBlockName)
  153.     {
  154.         $this->arShowBlocks[$strBlockName1;
  155.     }
  156.  
  157.     public function hideBlock($strBlockName)
  158.     {
  159.         $this->arShowBlocks[$strBlockName0;
  160.     }
  161.  
  162.     public function __block($params$content&$smarty&$repeat)
  163.     {
  164.         $name $params['name'];
  165.         if (isset($this->arShowBlocks[$name]&& $this->arShowBlocks[$name== 1{
  166.             return $content;
  167.         }
  168.         return '';
  169.     }
  170.  
  171.     public function __texter($params&$smarty)
  172.     {
  173.         $strTextKey $params['key'];
  174.  
  175.         $texter ForwardFW_Texter::factory($this->strApplicationName);
  176.         $result $texter->getText($strTextKey);
  177.  
  178.         return $result;
  179.     }
  180. }
  181.  
  182. ?>

Documentation generated on Sun, 30 Jan 2011 20:46:48 +0100 by phpDocumentor 1.4.3