2009-03-22 16:09:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty Internal Plugin Compile Block Close
|
|
|
|
*
|
|
|
|
* Compiles the {/capture} tag
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage Compiler
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Smarty Internal Plugin Compile BlockClose Class
|
|
|
|
*/
|
|
|
|
class Smarty_Internal_Compile_BlockClose extends Smarty_Internal_CompileBase {
|
|
|
|
/**
|
|
|
|
* Compiles code for the {/block} tag
|
|
|
|
*
|
|
|
|
* @param array $args array with attributes from parser
|
|
|
|
* @param object $compiler compiler object
|
|
|
|
* @return string compiled code
|
|
|
|
*/
|
|
|
|
public function compile($args, $compiler)
|
|
|
|
{
|
|
|
|
$this->compiler = $compiler;
|
|
|
|
$this->compiler->has_code = true;
|
|
|
|
// turn off block code extraction
|
|
|
|
$compiler->template->extract_code = false;
|
|
|
|
// check and get attributes
|
|
|
|
$this->optional_attributes = array('name');
|
|
|
|
$_attr = $this->_get_attributes($args);
|
2009-03-28 12:20:53 +00:00
|
|
|
$saved_data = $this->_close_tag(array('block'));
|
2009-03-22 16:09:05 +00:00
|
|
|
// if name does match to opening tag
|
2009-03-28 12:20:53 +00:00
|
|
|
if (isset($_attr['name']) && $saved_data[0]['name'] != $_attr['name']) {
|
|
|
|
$this->compiler->trigger_template_error('mismatching name attributes "' . $saved_data[0]['name'] . '" and "' . $_attr['name'] . '"');
|
2009-03-22 16:09:05 +00:00
|
|
|
}
|
2009-03-28 12:20:53 +00:00
|
|
|
$_name = trim($saved_data[0]['name'], "'");
|
2009-04-12 05:40:30 +00:00
|
|
|
if ($compiler->template->block_data[$_name]['mode'] == 'prepend') {
|
2009-04-12 02:30:54 +00:00
|
|
|
$_output = $compiler->template->block_data[$_name]['compiled'].$compiler->template->extracted_compiled_code;
|
2009-04-12 05:40:30 +00:00
|
|
|
} elseif ($compiler->template->block_data[$_name]['mode'] == 'append') {
|
2009-04-12 02:30:54 +00:00
|
|
|
$_output = $compiler->template->extracted_compiled_code.$compiler->template->block_data[$_name]['compiled'];
|
|
|
|
} elseif (!empty($compiler->template->block_data[$_name])) {
|
2009-03-22 16:09:05 +00:00
|
|
|
$_output = $compiler->template->block_data[$_name]['compiled'];
|
|
|
|
} else {
|
|
|
|
$_output = $compiler->template->extracted_compiled_code;
|
|
|
|
}
|
2009-03-28 12:20:53 +00:00
|
|
|
$compiler->template->extracted_compiled_code = $saved_data[1];
|
|
|
|
$compiler->template->extract_code = $saved_data[2];
|
2009-03-22 16:09:05 +00:00
|
|
|
return $_output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|