Passed
Push — master ( 190c48...bc57b3 )
by Chris
03:45 queued 10s
created
php/hamle/Tag.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
   function render($indent = 0, $minify = false) {
144 144
     $ind = $minify ? '' : str_pad('', $indent);
145 145
     $oneliner = (!(count($this->content) > 1 || $this->tags));
146
-    $out = $ind . $this->renderStTag() . ($oneliner || $minify ? '' : "\n");
146
+    $out = $ind.$this->renderStTag().($oneliner || $minify ? '' : "\n");
147 147
     if ($this->content) $out .= $this->renderContent($ind, $oneliner || $minify);
148 148
     foreach ($this->tags as $tag)
149 149
       $out .= $tag->render($indent + self::INDENT_SIZE, $minify);
150
-    $out .= ($minify || $oneliner ? '' : $ind) . $this->renderEnTag() . ($minify ? '' : "\n");
150
+    $out .= ($minify || $oneliner ? '' : $ind).$this->renderEnTag().($minify ? '' : "\n");
151 151
     return $out;
152 152
   }
153 153
 
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
   function renderContent($pad = "", $oneliner = false) {
162 162
     $out = "";
163 163
     foreach ($this->content as $c)
164
-      $out .= ($oneliner ? '' : $pad) . $c . ($oneliner ? '' : "\n");
164
+      $out .= ($oneliner ? '' : $pad).$c.($oneliner ? '' : "\n");
165 165
     return $out;
166 166
   }
167 167
 
Please login to merge, or discard this patch.
php/hamle/Text.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
     $pos = 0;
55 55
     $this->nodes = [];
56 56
     $rFlag = PREG_OFFSET_CAPTURE + PREG_SET_ORDER;
57
-    if(trim($s) === '') {
57
+    if (trim($s) === '') {
58 58
       $this->nodes[] = new Text\Plain($s, $mode);
59 59
       return;
60 60
     }
61
-    if($mode === self::TOKEN_CONTROL) {
62
-      if(preg_match('/^"(.*)"$/', trim($s), $m)) {
61
+    if ($mode === self::TOKEN_CONTROL) {
62
+      if (preg_match('/^"(.*)"$/', trim($s), $m)) {
63 63
         $this->nodes[] = new Text($m[1]);
64 64
       }
65 65
       else {
@@ -68,20 +68,20 @@  discard block
 block discarded – undo
68 68
       return;
69 69
     }
70 70
     preg_match_all(self::REGEX_HTML, $s, $m, $rFlag);
71
-    foreach($m as $match) {
72
-      if($mode & self::FIND_BARDOLLAR && isset($match[2])) {
73
-        if($match[2][1] != $pos) {
71
+    foreach ($m as $match) {
72
+      if ($mode & self::FIND_BARDOLLAR && isset($match[2])) {
73
+        if ($match[2][1] != $pos) {
74 74
           $this->nodes[] = new Text\Plain(
75 75
             substr($s, $pos, $match[2][1] - $pos), $mode);
76 76
         }
77 77
         $this->nodes[] = new Text\Complex(substr($match[2][0], 1, -1));
78 78
         $pos = $match[2][1] + strlen($match[2][0]);
79 79
       }
80
-      else if($mode & self::FIND_DOLLARVAR) {
81
-        if($match[1][1] > 0 && $s[$match[1][1] - 1] === '\\') {
80
+      else if ($mode & self::FIND_DOLLARVAR) {
81
+        if ($match[1][1] > 0 && $s[$match[1][1] - 1] === '\\') {
82 82
           continue;
83 83
         }
84
-        if($match[1][1] != $pos) {
84
+        if ($match[1][1] != $pos) {
85 85
           $this->nodes[] = new Text\Plain(
86 86
             substr($s, $pos, $match[1][1] - $pos), $mode);
87 87
         }
@@ -89,14 +89,14 @@  discard block
 block discarded – undo
89 89
         $pos = $match[1][1] + strlen($match[1][0]);
90 90
       }
91 91
     }
92
-    if($pos != strlen($s)) {
92
+    if ($pos != strlen($s)) {
93 93
       $this->nodes[] = new Text\Plain(substr($s, $pos), $mode);
94 94
     }
95 95
   }
96 96
 
97 97
   function toHTML($escape = false) {
98 98
     $out = [];
99
-    foreach($this->nodes as $string) {
99
+    foreach ($this->nodes as $string) {
100 100
       $out[] = $string->toHTML($escape);
101 101
     }
102 102
     return implode('', $out);
@@ -108,34 +108,34 @@  discard block
 block discarded – undo
108 108
 
109 109
   function toPHP() {
110 110
     $out = [];
111
-    foreach($this->nodes as $string) {
111
+    foreach ($this->nodes as $string) {
112 112
       $out[] = $string->toPHP();
113 113
     }
114 114
     return implode(".", $out);
115 115
   }
116 116
 
117 117
   function doEval() {
118
-    return eval('use Seufert\Hamle; return ' . $this->toPHP() . ';');
118
+    return eval('use Seufert\Hamle; return '.$this->toPHP().';');
119 119
   }
120 120
 
121 121
   static function varToCode($var) {
122
-    if(is_array($var)) {
122
+    if (is_array($var)) {
123 123
       $code = [];
124
-      foreach($var as $key => $value) {
125
-        $code[] = self::varToCode($key) . '=>' . self::varToCode($value);
124
+      foreach ($var as $key => $value) {
125
+        $code[] = self::varToCode($key).'=>'.self::varToCode($value);
126 126
       }
127
-      return 'array(' . implode(',', $code) . ')'; //remove unnecessary coma
127
+      return 'array('.implode(',', $code).')'; //remove unnecessary coma
128 128
     }
129
-    if(is_bool($var)) {
129
+    if (is_bool($var)) {
130 130
       return ($var ? 'TRUE' : 'FALSE');
131 131
     }
132
-    if(is_int($var) || is_float($var) || is_numeric($var)) {
132
+    if (is_int($var) || is_float($var) || is_numeric($var)) {
133 133
       return $var;
134 134
     }
135
-    if($var instanceof Text) {
135
+    if ($var instanceof Text) {
136 136
       return $var->toPHP();
137 137
     }
138
-    return "'" . str_replace(['$', "'"], ['$', "\\'"], $var) . "'";
138
+    return "'".str_replace(['$', "'"], ['$', "\\'"], $var)."'";
139 139
   }
140 140
 
141 141
   /**
Please login to merge, or discard this patch.
php/hamle/Tag/Snippet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
   static function decodeClassId($s) {
47 47
     $out = $m = array();
48
-    if(preg_match('/^[a-zA-Z0-9\_]+/', $s, $m))
48
+    if (preg_match('/^[a-zA-Z0-9\_]+/', $s, $m))
49 49
       $out['type'] = $m[0];
50 50
     preg_match_all('/[#\.][a-zA-Z0-9\-\_]+/m', $s, $m);
51 51
     if (isset($m[0])) foreach ($m[0] as $ss) {
Please login to merge, or discard this patch.
php/hamle/Text/Func.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
    */
51 51
   public function __construct($s) {
52 52
     $m = array();
53
-    if (!preg_match('/^\$\((' . self::REGEX_FUNCSEL . '*)(.*)\)$/', $s, $m))
53
+    if (!preg_match('/^\$\(('.self::REGEX_FUNCSEL.'*)(.*)\)$/', $s, $m))
54 54
       throw new ParseError("Unable to read \$ func in '$s'");
55 55
     if (trim($m[2]))
56 56
       $this->sub = new FuncSub($m[2]);
@@ -92,13 +92,13 @@  discard block
 block discarded – undo
92 92
     }
93 93
     $rand = false;
94 94
     if (preg_match_all('/\\^(-?)([a-zA-Z0-9_]*)/', $s, $m)) {
95
-      foreach($m[0] as $k=>$mv)
95
+      foreach ($m[0] as $k=>$mv)
96 96
         if ($m[2][$k]) {
97
-          $dir = $m[1][$k] == "-"?Hamle\Hamle::SORT_DESCENDING:Hamle\Hamle::SORT_ASCENDING;
97
+          $dir = $m[1][$k] == "-" ?Hamle\Hamle::SORT_DESCENDING : Hamle\Hamle::SORT_ASCENDING;
98 98
           $att['sort'][$m[2][$k]] = $dir;
99 99
         } else $rand = true;
100 100
     }
101
-    if($rand)
101
+    if ($rand)
102 102
       $att['sort'] = [""=>$att['dir'] = Hamle\Hamle::SORT_RANDOM];
103 103
     return $att;
104 104
   }
@@ -116,25 +116,25 @@  discard block
 block discarded – undo
116 116
    * @return string PHP Code
117 117
    */
118 118
   public function toPHP() {
119
-    $sub = $this->sub ? "->" . $this->sub->toPHP() : "";
120
-    if($this->scope instanceof Scope) {
121
-      return $this->scope->toPHP() . $sub;
122
-    } elseif($this->scope === true) {
119
+    $sub = $this->sub ? "->".$this->sub->toPHP() : "";
120
+    if ($this->scope instanceof Scope) {
121
+      return $this->scope->toPHP().$sub;
122
+    } elseif ($this->scope === true) {
123 123
       return "Hamle\\Scope::get(0)$sub";
124 124
     }
125
-    $limit = Text::varToCode($this->sortlimit['sort']) . "," .
126
-        $this->sortlimit['limit'] . "," . $this->sortlimit['offset'];
125
+    $limit = Text::varToCode($this->sortlimit['sort']).",".
126
+        $this->sortlimit['limit'].",".$this->sortlimit['offset'];
127 127
     if (count($this->filt['tag']))
128
-      return "Hamle\\Run::modelTypeTags(" .
129
-      Text::varToCode($this->filt['tag']) . ",$limit)$sub";
128
+      return "Hamle\\Run::modelTypeTags(".
129
+      Text::varToCode($this->filt['tag']).",$limit)$sub";
130 130
     if (count($this->filt['id']))
131 131
       if (isset($this->filt['id']['*']) && count($this->filt['id']['*']) == 1)
132
-        return "Hamle\\Run::modelId(" .
133
-        Text::varToCode(current($this->filt['id']['*'])) .
132
+        return "Hamle\\Run::modelId(".
133
+        Text::varToCode(current($this->filt['id']['*'])).
134 134
         ",$limit)$sub";
135 135
       else
136
-        return "Hamle\\Run::modelTypeId(" .
137
-        Text::varToCode($this->filt['id']) . ",$limit)$sub";
136
+        return "Hamle\\Run::modelTypeId(".
137
+        Text::varToCode($this->filt['id']).",$limit)$sub";
138 138
     return "";
139 139
   }
140 140
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
    * @return Model
144 144
    */
145 145
   public function getOrCreateModel(Model $parent = null) {
146
-    if($this->scope instanceof Scope) {
146
+    if ($this->scope instanceof Scope) {
147 147
       $parent = $this->scope->getOrCreateModel();
148 148
     } elseif ($this->scope === true)
149 149
       $parent = \Seufert\Hamle\Scope::get(0);
@@ -169,9 +169,9 @@  discard block
 block discarded – undo
169 169
           $this->sortlimit['limit'],
170 170
           $this->sortlimit['offset']
171 171
         );
172
-    if($this->sub)
172
+    if ($this->sub)
173 173
       return $this->sub->getOrCreateModel($parent)->current();
174
-    if(!$parent)
174
+    if (!$parent)
175 175
       throw new \RuntimeException('Unable to create model with no relation');
176 176
     return $parent->current();
177 177
   }
Please login to merge, or discard this patch.
php/hamle/Text/Complex.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
   protected $filter;
38 38
 
39 39
   function __construct($s) {
40
-    if(FALSE !== $pos = strpos($s,'|')) {
41
-      $this->filter = new Filter(substr($s, $pos+1), $this);
42
-      $s = substr($s,0,$pos);
40
+    if (FALSE !== $pos = strpos($s, '|')) {
41
+      $this->filter = new Filter(substr($s, $pos + 1), $this);
42
+      $s = substr($s, 0, $pos);
43 43
     }
44 44
     $s = preg_split("/-[>!]/", $s);
45 45
     // if(count($s) == 1) $s = explode("-!",$s[0]);
@@ -55,27 +55,27 @@  discard block
 block discarded – undo
55 55
   }
56 56
 
57 57
   function toHTML($escape = false) {
58
-    if($escape)
59
-      return "<?=htmlspecialchars(" .$this->toPHP() . ")?>";
60
-    return "<?=" . $this->toPHP() . "?>";
58
+    if ($escape)
59
+      return "<?=htmlspecialchars(".$this->toPHP().")?>";
60
+    return "<?=".$this->toPHP()."?>";
61 61
   }
62 62
   function toPHP() {
63
-    return $this->filter?$this->filter->toPHP():$this->toPHPVar();
63
+    return $this->filter ? $this->filter->toPHP() : $this->toPHPVar();
64 64
   }
65 65
   function toPHPVar() {
66 66
     if ($this->sel) {
67 67
       $sel = array();
68 68
       foreach ($this->sel as $s)
69 69
         $sel[] = "hamleGet('$s')";
70
-      return $this->func->toPHP() . "->" . implode('->', $sel);
70
+      return $this->func->toPHP()."->".implode('->', $sel);
71 71
     } else
72 72
       return $this->func->toPHP();
73 73
   }
74 74
 
75 75
   function getOrCreateModel(Model $parent = null) {
76
-    if($this->func instanceof Text\Scope)
76
+    if ($this->func instanceof Text\Scope)
77 77
       return $this->func->getOrCreateModel($parent);
78
-    if($this->func instanceof Text\Func)
78
+    if ($this->func instanceof Text\Func)
79 79
       return $this->func->getOrCreateModel($parent);
80 80
     throw new RuntimeException('Unsupported func type encountered:'.get_class($this->func));
81 81
   }
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
    * @return WriteModel
86 86
    */
87 87
   function setValue($value) {
88
-    if(!$this->sel || count($this->sel) != 1)
88
+    if (!$this->sel || count($this->sel) != 1)
89 89
       throw new RuntimeException('Can only set values, when one var name is present');
90 90
     $model = $this->getOrCreateModel();
91
-    if(!$model instanceof WriteModel)
91
+    if (!$model instanceof WriteModel)
92 92
       throw new RuntimeException('Can only set values on WriteModel, got '.get_class($model));
93 93
     $model->hamleSet($this->sel[0], $value);
94 94
     return $model;
Please login to merge, or discard this patch.
php/hamle/Scope.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
       self::$namedScopes[$name] = $model;
28 28
     else
29 29
       self::$scopes[] = $model;
30
-    if(self::$scopeHook) {
30
+    if (self::$scopeHook) {
31 31
         (self::$scopeHook)($model);
32 32
     }
33 33
   }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
       self::$namedScopes[$name]->rewind();
74 74
       return self::$namedScopes[$name];
75 75
     } else
76
-      if(self::$returnZeroOnNoScope)
76
+      if (self::$returnZeroOnNoScope)
77 77
         return new Model\Zero();
78 78
       throw new RunTime("Unable to find scope ($name)");
79 79
   }
Please login to merge, or discard this patch.
php/hamle/Parse.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $i = self::indentLevel($indent);
157 157
         unset($m[0]);
158 158
         switch (strlen($code) ? $code[0] : ($textcode ? $textcode : "")) {
159
-          case "|": //Control Tag
159
+          case "|" : //Control Tag
160 160
             if ($code == "|snippet")
161 161
               $hTag = new Tag\Snippet($text);
162 162
             elseif ($code == "|form")
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
             break;
197 197
           default:
198 198
             $attr = array();
199
-            if(isset($params[0]) && $params[0] == "[") {
199
+            if (isset($params[0]) && $params[0] == "[") {
200 200
               $param = substr($params, 1, -1);
201 201
               $param = str_replace(['+', '\\&'], ['%2B', '%26'], $param);
202 202
 //              parse_str($param, $attr);
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
               if ($s[0] == ".") $class[] = substr($s, 1);
210 210
               if ($s[0] == "!") $ref = substr($s, 1);
211 211
             }
212
-            if($ref)
212
+            if ($ref)
213 213
               $hTag = new Tag\DynHtml($tag, $class, $attr, $id, $ref);
214 214
             else
215 215
               $hTag = new Tag\Html($tag, $class, $attr, $id);
@@ -222,16 +222,16 @@  discard block
 block discarded – undo
222 222
         else
223 223
           $this->root[] = $hTag;
224 224
       } else
225
-        throw new ParseError("Unable to parse line {$this->lineNo}\n\"$line\"/" . preg_last_error());
225
+        throw new ParseError("Unable to parse line {$this->lineNo}\n\"$line\"/".preg_last_error());
226 226
       $this->lineNo++;
227 227
     }
228 228
   }
229 229
 
230 230
   function parseQueryString($qs) {
231 231
     $out = [];
232
-    foreach(explode('&',$qs) as $s) {
233
-      $kv = explode('=',$s,2);
234
-      $out[urldecode($kv[0])] = isset($kv[1])?urldecode($kv[1]):null;
232
+    foreach (explode('&', $qs) as $s) {
233
+      $kv = explode('=', $s, 2);
234
+      $out[urldecode($kv[0])] = isset($kv[1]) ?urldecode($kv[1]) : null;
235 235
     }
236 236
     return $out;
237 237
   }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
     $m = array();
250 250
     while ($this->lineNo + 1 < $this->lineCount &&
251 251
         (!trim($this->lines[$this->lineNo + 1]) ||
252
-            preg_match('/^(\s){' . $indent . '}((\s)+[^\s].*)$/',
252
+            preg_match('/^(\s){'.$indent.'}((\s)+[^\s].*)$/',
253 253
                 $this->lines[$this->lineNo + 1], $m))) {
254 254
       if (trim($this->lines[$this->lineNo + 1]))
255 255
         $out[] = $m[2];
Please login to merge, or discard this patch.
php/hamle/Text/Filter.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -46,23 +46,23 @@  discard block
 block discarded – undo
46 46
   static $filterResolver = null;
47 47
 
48 48
   function __construct($s, Text $what) {
49
-    if(preg_match("/^([a-z_]+)(?:\\((?P<vars>.*)\\))?(?:\\|(?P<chained>.+?))?$/", $s, $m)) {
49
+    if (preg_match("/^([a-z_]+)(?:\\((?P<vars>.*)\\))?(?:\\|(?P<chained>.+?))?$/", $s, $m)) {
50 50
       $this->filter = $m[1];
51 51
       $this->vars = isset($m['vars']) && strlen($m['vars']) ? explode(',', $m['vars']) : [];
52
-      foreach($this->vars as $k=>$v)
53
-        $this->vars[$k] = str_replace("&comma;",',',$v);
54
-      if(isset($m['chained']) && strlen($m['chained'])) {
55
-        $this->chained = new Filter($m['chained'],$what);
52
+      foreach ($this->vars as $k=>$v)
53
+        $this->vars[$k] = str_replace("&comma;", ',', $v);
54
+      if (isset($m['chained']) && strlen($m['chained'])) {
55
+        $this->chained = new Filter($m['chained'], $what);
56 56
       }
57 57
     } else {
58 58
       throw new ParseError("Unable to parse filter expression \"$s\"");
59 59
     }
60
-    if(method_exists(Filter::class, $this->filter)) {
60
+    if (method_exists(Filter::class, $this->filter)) {
61 61
       $this->filter = Filter::class.'::'.$this->filter;
62
-    } elseif(in_array($this->filter, ['round', 'strtoupper', 'strtolower', 'ucfirst'])) {
63
-    } elseif($this->filter === 'json') {
62
+    } elseif (in_array($this->filter, ['round', 'strtoupper', 'strtolower', 'ucfirst'])) {
63
+    } elseif ($this->filter === 'json') {
64 64
       $this->filter = 'json_encode';
65
-    } elseif(self::$filterResolver && $filter = (self::$filterResolver)($this->filter)) {
65
+    } elseif (self::$filterResolver && $filter = (self::$filterResolver)($this->filter)) {
66 66
       $this->filter = $filter;
67 67
     } else {
68 68
       throw new ParseError("Unknown Filter Type \"{$this->filter}\"");
@@ -71,24 +71,24 @@  discard block
 block discarded – undo
71 71
   }
72 72
 
73 73
   function toHTML($escape = false) {
74
-    if($escape)
75
-      return "<?=htmlspecialchars(" .$this->toPHP() . ")?>";
76
-    return "<?=" . $this->toPHP() . "?>";
74
+    if ($escape)
75
+      return "<?=htmlspecialchars(".$this->toPHP().")?>";
76
+    return "<?=".$this->toPHP()."?>";
77 77
   }
78 78
 
79 79
   function toPHPpre() {
80 80
     $pre = '';
81
-    if($this->chained)
81
+    if ($this->chained)
82 82
       $pre = $this->chained->toPHPpre();
83 83
     return "$pre{$this->filter}(";
84 84
   }
85 85
 
86 86
   function toPHPpost() {
87 87
     $post = '';
88
-    if($this->chained)
88
+    if ($this->chained)
89 89
       $post = $this->chained->toPHPpost();
90 90
     $o = '';
91
-    foreach($this->vars as $v)
91
+    foreach ($this->vars as $v)
92 92
       $o .= ','.$this->varToCode($v);
93 93
     return "$o)$post";
94 94
   }
@@ -103,24 +103,24 @@  discard block
 block discarded – undo
103 103
 
104 104
   static function itersplit($v, $sep = ",") {
105 105
     $o = [];
106
-    foreach(explode($sep, $v) as $k=>$i) {
107
-      if($i)
108
-        $o[] = ['v'=>trim($i), 'value'=>trim($i), 'k'=>$k,'key'=>$k];
106
+    foreach (explode($sep, $v) as $k=>$i) {
107
+      if ($i)
108
+        $o[] = ['v'=>trim($i), 'value'=>trim($i), 'k'=>$k, 'key'=>$k];
109 109
     }
110 110
     return new WrapArray($o);
111 111
   }
112 112
 
113 113
   static function newlinebr($v) {
114
-    return str_replace("\n","<br />\n",$v);
114
+    return str_replace("\n", "<br />\n", $v);
115 115
   }
116 116
 
117 117
   static function replace($v, $src, $dst) {
118
-    return str_replace($src,$dst,$v);
118
+    return str_replace($src, $dst, $v);
119 119
   }
120 120
 
121 121
   static function ascents($v) {
122
-    $v = str_replace(['$',' ',','],'', $v);
123
-    return (int) round($v * 100,0);
122
+    $v = str_replace(['$', ' ', ','], '', $v);
123
+    return (int) round($v * 100, 0);
124 124
   }
125 125
 
126 126
 }
Please login to merge, or discard this patch.
php/hamle/Field.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
 
113 113
   function getValue() {
114 114
     if (!is_null($this->setValue)) return $this->setValue;
115
-    if (isset($_REQUEST[$this->form . "_" . $this->name])) {
116
-      return $_REQUEST[$this->form . "_" . $this->name];
115
+    if (isset($_REQUEST[$this->form."_".$this->name])) {
116
+      return $_REQUEST[$this->form."_".$this->name];
117 117
     }
118 118
     return $this->opt['default'];
119 119
   }
120 120
 
121 121
   function getInputAttStatic(&$atts, &$type, &$content) {
122
-    $atts['id'] = $atts['name'] = $this->form . "_" . $this->name;
122
+    $atts['id'] = $atts['name'] = $this->form."_".$this->name;
123 123
     $atts['type'] = "text";
124
-    $atts['class'][] = str_replace(['Seufert\\','\\'],['','_'],get_class($this));
124
+    $atts['class'][] = str_replace(['Seufert\\', '\\'], ['', '_'], get_class($this));
125 125
   }
126 126
 
127 127
   function getInputAttDynamic(&$atts, &$type, &$content) {
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
   }
140 140
 
141 141
   function getLabelAttStatic(&$atts, &$type, &$content) {
142
-    $atts['class'][] = str_replace(['Seufert\\','\\'],['','_'],get_class($this));
143
-    $atts["for"] = $this->form . "_" . $this->name;
142
+    $atts['class'][] = str_replace(['Seufert\\', '\\'], ['', '_'], get_class($this));
143
+    $atts["for"] = $this->form."_".$this->name;
144 144
     $content = array($this->opt['label']);
145 145
   }
146 146
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
   }
149 149
 
150 150
   function getHintAttStatic(&$atts, &$type, &$content) {
151
-    $atts['class'][] = str_replace(['Seufert\\','\\'],['','_'],get_class($this));
151
+    $atts['class'][] = str_replace(['Seufert\\', '\\'], ['', '_'], get_class($this));
152 152
     $atts['class'][] = "hamleFormHint";
153 153
   }
154 154
 
Please login to merge, or discard this patch.