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_continue.php 433B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Smarty Internal Plugin Compile Continue
  4. * Compiles the {continue} tag
  5. *
  6. * @package Smarty
  7. * @subpackage Compiler
  8. * @author Uwe Tews
  9. */
  10. /**
  11. * Smarty Internal Plugin Compile Continue Class
  12. *
  13. * @package Smarty
  14. * @subpackage Compiler
  15. */
  16. class Smarty_Internal_Compile_Continue extends Smarty_Internal_Compile_Break
  17. {
  18. /**
  19. * Tag name
  20. *
  21. * @var string
  22. */
  23. public $tag = 'continue';
  24. }