]> git.mxchange.org Git - friendica.git/blobdiff - library/Smarty/libs/sysplugins/smarty_internal_compile_break.php
reverting tinymce changes, updating smarty to 3.1.19
[friendica.git] / library / Smarty / libs / sysplugins / smarty_internal_compile_break.php
index 259c66e2b23ebe5a0fc0763592e3f913fdbe5d1e..b470234b16d4e51be91c55c99c7c07034bf18ff6 100644 (file)
@@ -1,77 +1,75 @@
-<?php\r
-/**\r
- * Smarty Internal Plugin Compile Break\r
- *\r
- * Compiles the {break} tag\r
- *\r
- * @package Smarty\r
- * @subpackage Compiler\r
- * @author Uwe Tews\r
- */\r
-/**\r
- * Smarty Internal Plugin Compile Break Class\r
- *\r
- * @package Smarty\r
- * @subpackage Compiler\r
- */\r
-class Smarty_Internal_Compile_Break extends Smarty_Internal_CompileBase {\r
-\r
-    /**\r
-     * Attribute definition: Overwrites base class.\r
-     *\r
-     * @var array\r
-     * @see Smarty_Internal_CompileBase\r
-     */\r
-    public $optional_attributes = array('levels');\r
-    /**\r
-     * Attribute definition: Overwrites base class.\r
-     *\r
-     * @var array\r
-     * @see Smarty_Internal_CompileBase\r
-     */\r
-    public $shorttag_order = array('levels');\r
-\r
-    /**\r
-     * Compiles code for the {break} tag\r
-     *\r
-     * @param array  $args array with attributes from parser\r
-     * @param object $compiler   compiler object\r
-     * @param array  $parameter  array with compilation parameter\r
-     * @return string compiled code\r
-     */\r
-    public function compile($args, $compiler, $parameter)\r
-    {\r
-        static $_is_loopy = array('for' => true, 'foreach' => true, 'while' => true, 'section' => true);\r
-        // check and get attributes\r
-        $_attr = $this->getAttributes($compiler, $args);\r
-\r
-        if ($_attr['nocache'] === true) {\r
-            $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);\r
-        }\r
-\r
-        if (isset($_attr['levels'])) {\r
-            if (!is_numeric($_attr['levels'])) {\r
-                $compiler->trigger_template_error('level attribute must be a numeric constant', $compiler->lex->taglineno);\r
-            }\r
-            $_levels = $_attr['levels'];\r
-        } else {\r
-            $_levels = 1;\r
-        }\r
-        $level_count = $_levels;\r
-        $stack_count = count($compiler->_tag_stack) - 1;\r
-        while ($level_count > 0 && $stack_count >= 0) {\r
-            if (isset($_is_loopy[$compiler->_tag_stack[$stack_count][0]])) {\r
-                $level_count--;\r
-            }\r
-            $stack_count--;\r
-        }\r
-        if ($level_count != 0) {\r
-            $compiler->trigger_template_error("cannot break {$_levels} level(s)", $compiler->lex->taglineno);\r
-        }\r
-        $compiler->has_code = true;\r
-        return "<?php break {$_levels}?>";\r
-    }\r
-\r
-}\r
-\r
-?>
\ No newline at end of file
+<?php
+/**
+ * Smarty Internal Plugin Compile Break
+ * Compiles the {break} tag
+ *
+ * @package    Smarty
+ * @subpackage Compiler
+ * @author     Uwe Tews
+ */
+
+/**
+ * Smarty Internal Plugin Compile Break Class
+ *
+ * @package    Smarty
+ * @subpackage Compiler
+ */
+class Smarty_Internal_Compile_Break extends Smarty_Internal_CompileBase
+{
+    /**
+     * Attribute definition: Overwrites base class.
+     *
+     * @var array
+     * @see Smarty_Internal_CompileBase
+     */
+    public $optional_attributes = array('levels');
+    /**
+     * Attribute definition: Overwrites base class.
+     *
+     * @var array
+     * @see Smarty_Internal_CompileBase
+     */
+    public $shorttag_order = array('levels');
+
+    /**
+     * Compiles code for the {break} tag
+     *
+     * @param  array  $args      array with attributes from parser
+     * @param  object $compiler  compiler object
+     * @param  array  $parameter array with compilation parameter
+     *
+     * @return string compiled code
+     */
+    public function compile($args, $compiler, $parameter)
+    {
+        static $_is_loopy = array('for' => true, 'foreach' => true, 'while' => true, 'section' => true);
+        // check and get attributes
+        $_attr = $this->getAttributes($compiler, $args);
+
+        if ($_attr['nocache'] === true) {
+            $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
+        }
+
+        if (isset($_attr['levels'])) {
+            if (!is_numeric($_attr['levels'])) {
+                $compiler->trigger_template_error('level attribute must be a numeric constant', $compiler->lex->taglineno);
+            }
+            $_levels = $_attr['levels'];
+        } else {
+            $_levels = 1;
+        }
+        $level_count = $_levels;
+        $stack_count = count($compiler->_tag_stack) - 1;
+        while ($level_count > 0 && $stack_count >= 0) {
+            if (isset($_is_loopy[$compiler->_tag_stack[$stack_count][0]])) {
+                $level_count --;
+            }
+            $stack_count --;
+        }
+        if ($level_count != 0) {
+            $compiler->trigger_template_error("cannot break {$_levels} level(s)", $compiler->lex->taglineno);
+        }
+
+        return "<?php break {$_levels}?>";
+    }
+}