mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
* Smarty Internal Plugin Compile Block
 | 
						|
* 
 | 
						|
* Compiles the {block}{/block} tags
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage Compiler
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
/**
 | 
						|
* Smarty Internal Plugin Compile Block Class
 | 
						|
*/
 | 
						|
class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase {
 | 
						|
    /**
 | 
						|
    * Compiles code for the {block} tag
 | 
						|
    * 
 | 
						|
    * @param array $args array with attributes from parser
 | 
						|
    * @param object $compiler compiler object
 | 
						|
    * @return boolean true
 | 
						|
    */
 | 
						|
    public function compile($args, $compiler)
 | 
						|
    {
 | 
						|
        $this->compiler = $compiler;
 | 
						|
        $this->required_attributes = array('name');
 | 
						|
        $this->optional_attributes = array('assign'); 
 | 
						|
        // check and get attributes
 | 
						|
        $_attr = $this->_get_attributes($args);
 | 
						|
        $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code);
 | 
						|
        $this->_open_tag('block', $save);
 | 
						|
        $compiler->template->extract_code = true;
 | 
						|
        $compiler->template->extracted_compiled_code = '';
 | 
						|
        $compiler->template->has_code = false;
 | 
						|
        return true;
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
/**
 | 
						|
* 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->smarty = $compiler->smarty;
 | 
						|
        $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);
 | 
						|
        $saved_data = $this->_close_tag(array('block')); 
 | 
						|
        // if name does match to opening tag
 | 
						|
        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'] . '"');
 | 
						|
        } 
 | 
						|
        $_name = trim($saved_data[0]['name'], "\"'");
 | 
						|
        if (isset($this->smarty->block_data[$_name])) {
 | 
						|
            $_tpl = $this->smarty->createTemplate('string:' . $this->smarty->block_data[$_name]['source'], null, null, $compiler->template);
 | 
						|
            $_tpl->template_filepath = $this->smarty->block_data[$_name]['file'];
 | 
						|
            $_tpl->forceNocache = true;
 | 
						|
            $_tpl->suppressHeader = true;
 | 
						|
            $_tpl->suppressFileDependency = true;
 | 
						|
 | 
						|
            if (strpos($this->smarty->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) {
 | 
						|
                $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->template->extracted_compiled_code, $_tpl->getCompiledTemplate());
 | 
						|
            } elseif ($this->smarty->block_data[$_name]['mode'] == 'prepend') {
 | 
						|
                $_output = $_tpl->getCompiledTemplate() . $compiler->template->extracted_compiled_code;
 | 
						|
            } elseif ($this->smarty->block_data[$_name]['mode'] == 'append') {
 | 
						|
                $_output = $compiler->template->extracted_compiled_code . $_tpl->getCompiledTemplate();
 | 
						|
            } elseif (!empty($this->smarty->block_data[$_name])) {
 | 
						|
                $_output = $_tpl->getCompiledTemplate();
 | 
						|
            }
 | 
						|
            $compiler->template->properties = array_merge_recursive($compiler->template->properties, $_tpl->properties);
 | 
						|
            unset($_tpl);
 | 
						|
        } else {
 | 
						|
            $_output = $compiler->template->extracted_compiled_code;
 | 
						|
        } 
 | 
						|
        $compiler->template->extracted_compiled_code = $saved_data[1];
 | 
						|
        $compiler->template->extract_code = $saved_data[2]; 
 | 
						|
        return $_output;
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |