fusionpbx/resources/templates/engine/smarty/sysplugins/smarty_internal_compile_con...

26 lines
437 B
PHP
Raw Permalink Normal View History

2013-11-09 21:02:56 +01:00
<?php
/**
* Smarty Internal Plugin Compile Continue
* Compiles the {continue} tag
*
2018-11-07 08:18:14 +01:00
* @package Smarty
2013-11-09 21:02:56 +01:00
* @subpackage Compiler
2018-11-07 08:18:14 +01:00
* @author Uwe Tews
2013-11-09 21:02:56 +01:00
*/
/**
* Smarty Internal Plugin Compile Continue Class
*
2018-11-07 08:18:14 +01:00
* @package Smarty
2013-11-09 21:02:56 +01:00
* @subpackage Compiler
*/
2018-11-07 08:18:14 +01:00
class Smarty_Internal_Compile_Continue extends Smarty_Internal_Compile_Break
2013-11-09 21:02:56 +01:00
{
/**
2018-11-07 08:18:14 +01:00
* Tag name
2013-11-09 21:02:56 +01:00
*
2018-11-07 08:18:14 +01:00
* @var string
2013-11-09 21:02:56 +01:00
*/
2018-11-07 08:18:14 +01:00
public $tag = 'continue';
2013-11-09 21:02:56 +01:00
}