Files
smarty/libs/sysplugins/smarty_internal_compile_capture.php

100 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/**
2010-08-17 15:39:51 +00:00
* Smarty Internal Plugin Compile Capture
2011-09-16 14:19:56 +00:00
*
2010-08-17 15:39:51 +00:00
* Compiles the {capture} tag
2011-09-16 14:19:56 +00:00
*
2010-08-17 15:39:51 +00:00
* @package Smarty
* @subpackage Compiler
2011-09-16 14:19:56 +00:00
* @author Uwe Tews
2010-08-17 15:39:51 +00:00
*/
/**
2010-08-17 15:39:51 +00:00
* Smarty Internal Plugin Compile Capture Class
2011-09-16 14:19:56 +00:00
*
* @package Smarty
* @subpackage Compiler
2010-08-17 15:39:51 +00:00
*/
class Smarty_Internal_Compile_Capture extends Smarty_Internal_CompileBase {
2011-09-16 14:19:56 +00:00
/**
* Attribute definition: Overwrites base class.
*
* @var array
* @see Smarty_Internal_CompileBase
*/
public $shorttag_order = array('name');
2011-09-16 14:19:56 +00:00
/**
* Attribute definition: Overwrites base class.
*
* @var array
* @see Smarty_Internal_CompileBase
*/
public $optional_attributes = array('name', 'assign', 'append');
/**
2010-08-17 15:39:51 +00:00
* Compiles code for the {capture} tag
2011-09-16 14:19:56 +00:00
*
* @param array $args array with attributes from parser
2010-08-17 15:39:51 +00:00
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
// check and get attributes
2011-09-16 14:19:56 +00:00
$_attr = $this->getAttributes($compiler, $args);
$buffer = isset($_attr['name']) ? $_attr['name'] : "'default'";
$assign = isset($_attr['assign']) ? $_attr['assign'] : null;
$append = isset($_attr['append']) ? $_attr['append'] : null;
2011-09-16 14:19:56 +00:00
$compiler->_capture_stack[] = array($buffer, $assign, $append, $compiler->nocache);
// maybe nocache because of nocache variables
2011-09-16 14:19:56 +00:00
$compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
$_output = "<?php ob_start(); ?>";
return $_output;
2011-09-16 14:19:56 +00:00
}
}
/**
2010-08-17 15:39:51 +00:00
* Smarty Internal Plugin Compile Captureclose Class
2011-09-16 14:19:56 +00:00
*
* @package Smarty
* @subpackage Compiler
2010-08-17 15:39:51 +00:00
*/
class Smarty_Internal_Compile_CaptureClose extends Smarty_Internal_CompileBase {
2011-09-16 14:19:56 +00:00
/**
2010-08-17 15:39:51 +00:00
* Compiles code for the {/capture} tag
2011-09-16 14:19:56 +00:00
*
* @param array $args array with attributes from parser
2010-08-17 15:39:51 +00:00
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
// check and get attributes
2011-09-16 14:19:56 +00:00
$_attr = $this->getAttributes($compiler, $args);
// must endblock be nocache?
2011-09-16 14:19:56 +00:00
if ($compiler->nocache) {
$compiler->tag_nocache = true;
}
2011-09-16 14:19:56 +00:00
list($buffer, $assign, $append, $compiler->nocache) = array_pop($compiler->_capture_stack);
$_output = "<?php ";
if (isset($assign)) {
$_output .= " \$_smarty_tpl->assign($assign, ob_get_contents());";
2011-09-16 14:19:56 +00:00
}
if (isset($append)) {
$_output .= " \$_smarty_tpl->append($append, ob_get_contents());";
2011-09-16 14:19:56 +00:00
}
$_output .= " Smarty::\$_smarty_vars['capture'][$buffer]=ob_get_clean();?>";
return $_output;
2011-09-16 14:19:56 +00:00
}
}
2010-08-17 15:39:51 +00:00
?>