forked from smarty-php/smarty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- new feature {parent} = {$smarty.block.parent} {child} = {$smarty.bl…
…ock.child}
- Loading branch information
Uwe Tews
committed
Mar 26, 2018
1 parent
c81948d
commit 0dbace8
Showing
14 changed files
with
1,980 additions
and
1,675 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/* | ||
* This file is part of Smarty. | ||
* | ||
* (c) 2015 Uwe Tews | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/** | ||
* Smarty Internal Plugin Compile Block Child Class | ||
* | ||
* @author Uwe Tews <uwe.tews@googlemail.com> | ||
*/ | ||
class Smarty_Internal_Compile_Block_Child extends Smarty_Internal_Compile_Child | ||
{ | ||
/** | ||
* Tag name | ||
* | ||
* @var string | ||
*/ | ||
public $tag = 'block_child'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
/* | ||
* This file is part of Smarty. | ||
* | ||
* (c) 2015 Uwe Tews | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/** | ||
* Smarty Internal Plugin Compile Block Parent Class | ||
* | ||
* @author Uwe Tews <uwe.tews@googlemail.com> | ||
*/ | ||
class Smarty_Internal_Compile_Block_Parent extends Smarty_Internal_Compile_Child | ||
{ | ||
/** | ||
* Tag name | ||
* | ||
* @var string | ||
*/ | ||
public $tag = 'block_parent'; | ||
|
||
/** | ||
* Block type | ||
* | ||
* @var string | ||
*/ | ||
public $blockType = 'Parent'; | ||
} |
Oops, something went wrong.