您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

smarty_internal_compile_block_parent.php 581B

12345678910111213141516171819202122232425262728293031
  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. * Smarty Internal Plugin Compile Block Parent Class
  12. *
  13. * @author Uwe Tews <uwe.tews@googlemail.com>
  14. */
  15. class Smarty_Internal_Compile_Block_Parent extends Smarty_Internal_Compile_Child
  16. {
  17. /**
  18. * Tag name
  19. *
  20. * @var string
  21. */
  22. public $tag = 'block_parent';
  23. /**
  24. * Block type
  25. *
  26. * @var string
  27. */
  28. public $blockType = 'Parent';
  29. }