@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | $this->setup(); |
55 | 55 | $fields = $this->_fields; |
56 | 56 | $this->_fields = array(); |
57 | - foreach($fields as $v) { |
|
57 | + foreach ($fields as $v) { |
|
58 | 58 | $this->_fields[$v->name] = $v; |
59 | 59 | $v->form($this->_name); |
60 | 60 | } |
@@ -64,23 +64,23 @@ discard block |
||
64 | 64 | |
65 | 65 | function process() { |
66 | 66 | $clicked = ""; |
67 | - foreach($this->_fields as $f) |
|
68 | - if($f instanceOf Field\Button) |
|
69 | - if($f->isClicked()) |
|
67 | + foreach ($this->_fields as $f) |
|
68 | + if ($f instanceOf Field\Button) |
|
69 | + if ($f->isClicked()) |
|
70 | 70 | $clicked = $f; |
71 | - foreach($this->_fields as $f) |
|
72 | - $f->doProcess($clicked?true:false); |
|
73 | - if($clicked) |
|
71 | + foreach ($this->_fields as $f) |
|
72 | + $f->doProcess($clicked ?true:false); |
|
73 | + if ($clicked) |
|
74 | 74 | try { |
75 | 75 | $this->onSubmit($clicked); |
76 | - } catch(Exception\FormInvalid $e) { |
|
76 | + } catch (Exception\FormInvalid $e) { |
|
77 | 77 | $this->hint = $e->getMessage(); |
78 | 78 | } |
79 | 79 | } |
80 | 80 | |
81 | 81 | function isValid() { |
82 | 82 | $valid = true; |
83 | - foreach($this->_fields as $f) |
|
83 | + foreach ($this->_fields as $f) |
|
84 | 84 | $valid = $f->valid && $valid; |
85 | 85 | return $valid; |
86 | 86 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | return $this->_fields; |
96 | 96 | } |
97 | 97 | function getField($n) { |
98 | - if(!isset($this->_fields[$n])) |
|
98 | + if (!isset($this->_fields[$n])) |
|
99 | 99 | throw new Exception\NoKey("unable to find form field ($n)"); |
100 | 100 | return $this->_fields[$n]; |
101 | 101 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | } |
105 | 105 | |
106 | 106 | function getHTMLProp() { |
107 | - return array('action'=>'','method'=>'post','name'=>$this->_name, |
|
107 | + return array('action'=>'', 'method'=>'post', 'name'=>$this->_name, |
|
108 | 108 | 'enctype'=>'multipart/form-data'); |
109 | 109 | } |
110 | 110 |