You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

smarty_internal_compile_parent.php 564B

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