Subversion Repositories ALCASAR

Rev

Details | Last modification | View Log

Rev Author Line No. Line
2809 rexy 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 Child Class
13
 *
14
 * @author Uwe Tews <uwe.tews@googlemail.com>
15
 */
16
class Smarty_Internal_Compile_Block_Child extends Smarty_Internal_Compile_Child
17
{
18
    /**
19
     * Tag name
20
     *
21
     * @var string
22
     */
23
    public $tag = 'block_child';
24
}