| 1: | <?php | 
| 2: | /** | 
| 3: | * This file is part of Smarty. | 
| 4: | * | 
| 5: | * (c) 2015 Uwe Tews | 
| 6: | * | 
| 7: | * For the full copyright and license information, please view the LICENSE | 
| 8: | * file that was distributed with this source code. | 
| 9: | */ | 
| 10: | |
| 11: | /** | 
| 12: | * Smarty Internal Plugin Compile Block Parent Class | 
| 13: | * | 
| 14: | * @author Uwe Tews <uwe.tews@googlemail.com> | 
| 15: | */ | 
| 16: | class Smarty_Internal_Compile_Block_Parent extends Smarty_Internal_Compile_Child | 
| 17: | { | 
| 18: | /** | 
| 19: | * Tag name | 
| 20: | * | 
| 21: | * @var string | 
| 22: | */ | 
| 23: | public $tag = 'block_parent'; | 
| 24: | |
| 25: | /** | 
| 26: | * Block type | 
| 27: | * | 
| 28: | * @var string | 
| 29: | */ | 
| 30: | public $blockType = 'Parent'; | 
| 31: | } | 
| 32: |