Exemplo n.º 1
0
/**
 * Loads sub-templates contained in an external file
 * <pre>
 *  * file : the resource name of the file to load
 * </pre>
 * This software is provided 'as-is', without any express or implied warranty.
 * In no event will the authors be held liable for any damages arising from the use of this software.
 *
 * @author     Jordi Boggiano <*****@*****.**>
 * @copyright  Copyright (c) 2008, Jordi Boggiano
 * @license    http://dwoo.org/LICENSE   Modified BSD License
 * @link       http://dwoo.org/
 * @version    1.1.0
 * @date       2009-07-18
 * @package    Dwoo
 */
function Dwoo_Plugin_load_templates_compile(Dwoo_Compiler $compiler, $file)
{
    $file = substr($file, 1, -1);
    if ($file === '') {
        return;
    }
    if (preg_match('#^([a-z]{2,}):(.*)$#i', $file, $m)) {
        // resource:identifier given, extract them
        $resource = $m[1];
        $identifier = $m[2];
    } else {
        // get the current template's resource
        $resource = $compiler->getDwoo()->getTemplate()->getResourceName();
        $identifier = $file;
    }
    $tpl = $compiler->getDwoo()->templateFactory($resource, $identifier);
    if ($tpl === null) {
        throw new Dwoo_Compilation_Exception($compiler, 'Load Templates : Resource "' . $resource . ':' . $identifier . '" not found.');
    } elseif ($tpl === false) {
        throw new Dwoo_Compilation_Exception($compiler, 'Load Templates : Resource "' . $resource . '" does not support includes.');
    }
    $cmp = clone $compiler;
    $cmp->compile($compiler->getDwoo(), $tpl);
    foreach ($cmp->getTemplatePlugins() as $template => $args) {
        $compiler->addTemplatePlugin($template, $args['params'], $args['uuid'], $args['body']);
    }
    foreach ($cmp->getUsedPlugins() as $plugin => $type) {
        $compiler->addUsedPlugin($plugin, $type);
    }
    $out = '\'\';// checking for modification in ' . $resource . ':' . $identifier . "\r\n";
    $modCheck = $tpl->getIsModifiedCode();
    if ($modCheck) {
        $out .= 'if (!(' . $modCheck . ')) { ob_end_clean(); return false; }';
    } else {
        $out .= 'try {
	$tpl = $this->templateFactory("' . $resource . '", "' . $identifier . '");
} catch (Dwoo_Exception $e) {
	$this->triggerError(\'Load Templates : Resource <em>' . $resource . '</em> was not added to Dwoo, can not extend <em>' . $identifier . '</em>\', E_USER_WARNING);
}
if ($tpl === null)
	$this->triggerError(\'Load Templates : Resource "' . $resource . ':' . $identifier . '" was not found.\', E_USER_WARNING);
elseif ($tpl === false)
	$this->triggerError(\'Load Templates : Resource "' . $resource . '" does not support extends.\', E_USER_WARNING);
if ($tpl->getUid() != "' . $tpl->getUid() . '") { ob_end_clean(); return false; }';
    }
    return $out;
}
Exemplo n.º 2
0
 public static function postProcessing(Dwoo_Compiler $compiler, array $params, $prepend, $append, $content)
 {
     $paramstr = 'Dwoo $dwoo';
     $init = 'static $_callCnt = 0;' . "\n" . '$dwoo->scope[\' ' . $params['uuid'] . '\'.$_callCnt] = array();' . "\n" . '$_scope = $dwoo->setScope(array(\' ' . $params['uuid'] . '\'.($_callCnt++)));' . "\n";
     $cleanup = '/* -- template end output */ $dwoo->setScope($_scope, true);';
     foreach ($params['*'] as $param => $defValue) {
         if ($defValue === null) {
             $paramstr .= ', $' . $param;
         } else {
             $paramstr .= ', $' . $param . ' = ' . $defValue;
         }
         $init .= '$dwoo->scope[\'' . $param . '\'] = $' . $param . ";\n";
     }
     $init .= '/* -- template start output */';
     $funcName = 'Dwoo_Plugin_' . $params['name'] . '_' . $params['uuid'];
     $body = 'if (!function_exists(\'' . $funcName . "')) {\nfunction " . $funcName . '(' . $paramstr . ') {' . "\n{$init}" . Dwoo_Compiler::PHP_CLOSE . $prepend . str_replace(array('$this->', '$this,'), array('$dwoo->', '$dwoo,'), $content) . $append . Dwoo_Compiler::PHP_OPEN . $cleanup . "\n}\n}";
     $compiler->addTemplatePlugin($params['name'], $params['*'], $params['uuid'], $body);
 }