@@ -19,35 +19,35 @@ |
||
19 | 19 | class DataElement extends Widget { |
20 | 20 | |
21 | 21 | public function __construct($identifier, $modelInstance=NULL) { |
22 | - parent::__construct($identifier, null,$modelInstance); |
|
22 | + parent::__construct($identifier, null, $modelInstance); |
|
23 | 23 | $this->_instanceViewer=new InstanceViewer(); |
24 | - $this->content=["table"=>new HtmlTable($identifier, 0,2)]; |
|
24 | + $this->content=["table"=>new HtmlTable($identifier, 0, 2)]; |
|
25 | 25 | $this->content["table"]->setDefinition(); |
26 | 26 | $this->_toolbarPosition=PositionInTable::BEFORETABLE; |
27 | 27 | } |
28 | 28 | |
29 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
29 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
30 | 30 | $this->_instanceViewer->setInstance($this->_modelInstance); |
31 | 31 | |
32 | 32 | $table=$this->content["table"]; |
33 | 33 | $this->_generateContent($table); |
34 | 34 | |
35 | - if(isset($this->_toolbar)){ |
|
35 | + if (isset($this->_toolbar)) { |
|
36 | 36 | $this->_setToolbarPosition($table); |
37 | 37 | } |
38 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
39 | - return parent::compile($js,$view); |
|
38 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
39 | + return parent::compile($js, $view); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param HtmlTable $table |
44 | 44 | */ |
45 | - protected function _generateContent($table){ |
|
45 | + protected function _generateContent($table) { |
|
46 | 46 | $captions=$this->_instanceViewer->getCaptions(); |
47 | - $values= $this->_instanceViewer->getValues(); |
|
47 | + $values=$this->_instanceViewer->getValues(); |
|
48 | 48 | $count=$this->_instanceViewer->count(); |
49 | - for($i=0;$i<$count;$i++){ |
|
50 | - $table->addRow([$captions[$i],$values[$i]]); |
|
49 | + for ($i=0; $i<$count; $i++) { |
|
50 | + $table->addRow([$captions[$i], $values[$i]]); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | } |
36 | 36 | if (isset($label)) |
37 | 37 | $this->setLabel($label); |
38 | - foreach ( $fields as $field ) { |
|
38 | + foreach ($fields as $field) { |
|
39 | 39 | $this->addItem($field); |
40 | 40 | } |
41 | 41 | return $this; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | public function addItem($item) { |
59 | 59 | $item=parent::addItem($item); |
60 | - if($item instanceof HtmlFormField) |
|
60 | + if ($item instanceof HtmlFormField) |
|
61 | 61 | $item->setContainer($this); |
62 | 62 | return $item; |
63 | 63 | } |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | |
99 | 99 | |
100 | 100 | public static function radios($name, $items=array(), $label=NULL, $value=null, $type=NULL) { |
101 | - $fields=array (); |
|
101 | + $fields=array(); |
|
102 | 102 | $i=0; |
103 | - foreach ( $items as $val => $caption ) { |
|
103 | + foreach ($items as $val => $caption) { |
|
104 | 104 | $itemO=new HtmlFormRadio($name."-".$i++, $name, $caption, $val, $type); |
105 | 105 | if ($val===$value) { |
106 | 106 | $itemO->getField()->setProperty("checked", ""); |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | public static function checkeds($name, $items=array(), $label=NULL, $values=array(), $type=NULL) { |
117 | - $fields=array (); |
|
117 | + $fields=array(); |
|
118 | 118 | $i=0; |
119 | - foreach ( $items as $val => $caption ) { |
|
119 | + foreach ($items as $val => $caption) { |
|
120 | 120 | $itemO=new HtmlFormCheckbox($name."-".$i++, $name, $caption, $val, $type); |
121 | 121 | if (\array_search($val, $values)!==false) { |
122 | 122 | $itemO->getField()->getField()->setProperty("checked", ""); |
@@ -15,8 +15,8 @@ discard block |
||
15 | 15 | * @param array $instances |
16 | 16 | * @return DataTable |
17 | 17 | */ |
18 | - public function dataTable($identifier,$model, $instances){ |
|
19 | - return $this->addHtmlComponent(new DataTable($identifier,$model,$instances)); |
|
18 | + public function dataTable($identifier, $model, $instances) { |
|
19 | + return $this->addHtmlComponent(new DataTable($identifier, $model, $instances)); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | * @param object $instance |
25 | 25 | * @return DataElement |
26 | 26 | */ |
27 | - public function dataElement($identifier, $instance){ |
|
28 | - return $this->addHtmlComponent(new DataElement($identifier,$instance)); |
|
27 | + public function dataElement($identifier, $instance) { |
|
28 | + return $this->addHtmlComponent(new DataElement($identifier, $instance)); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @param object $instance |
34 | 34 | * @return DataForm |
35 | 35 | */ |
36 | - public function dataForm($identifier, $instance){ |
|
37 | - return $this->addHtmlComponent(new DataForm($identifier,$instance)); |
|
36 | + public function dataForm($identifier, $instance) { |
|
37 | + return $this->addHtmlComponent(new DataForm($identifier, $instance)); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | \ No newline at end of file |
@@ -8,16 +8,16 @@ |
||
8 | 8 | class HtmlFormInput extends HtmlFormField { |
9 | 9 | use TextFieldsTrait; |
10 | 10 | |
11 | - public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) { |
|
12 | - if(!isset($placeholder) && $type==="text") |
|
11 | + public function __construct($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) { |
|
12 | + if (!isset($placeholder) && $type==="text") |
|
13 | 13 | $placeholder=$label; |
14 | - parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label); |
|
14 | + parent::__construct("field-".$identifier, new HtmlInput($identifier, $type, $value, $placeholder), $label); |
|
15 | 15 | } |
16 | 16 | |
17 | - public function getDataField(){ |
|
18 | - $field= $this->getField(); |
|
17 | + public function getDataField() { |
|
18 | + $field=$this->getField(); |
|
19 | 19 | //TODO check getField |
20 | - if($field instanceof HtmlInput) |
|
20 | + if ($field instanceof HtmlInput) |
|
21 | 21 | $field=$field->getDataField(); |
22 | 22 | return $field; |
23 | 23 | } |
@@ -9,17 +9,17 @@ discard block |
||
9 | 9 | class HtmlFormTextarea extends HtmlFormField { |
10 | 10 | use TextFieldsTrait; |
11 | 11 | |
12 | - public function __construct($identifier, $label=NULL,$value=NULL,$placeholder=NULL,$rows=NULL) { |
|
13 | - if(!isset($placeholder)) |
|
12 | + public function __construct($identifier, $label=NULL, $value=NULL, $placeholder=NULL, $rows=NULL) { |
|
13 | + if (!isset($placeholder)) |
|
14 | 14 | $placeholder=$label; |
15 | - parent::__construct("field-".$identifier, new HtmlTextarea($identifier,$value,$placeholder,$rows), $label); |
|
15 | + parent::__construct("field-".$identifier, new HtmlTextarea($identifier, $value, $placeholder, $rows), $label); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Defines the textarea row count |
20 | 20 | * @param int $count |
21 | 21 | */ |
22 | - public function setRows($count){ |
|
22 | + public function setRows($count) { |
|
23 | 23 | $this->getField()->setRows($count); |
24 | 24 | } |
25 | 25 | |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | return $this->content["field"]; |
28 | 28 | } |
29 | 29 | |
30 | - public function setName($name){ |
|
31 | - $this->getDataField()->setProperty("name",$name); |
|
30 | + public function setName($name) { |
|
31 | + $this->getDataField()->setProperty("name", $name); |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 | \ No newline at end of file |
@@ -6,19 +6,19 @@ |
||
6 | 6 | |
7 | 7 | abstract public function getDataField(); |
8 | 8 | abstract public function addToProperty($name, $value, $separator=" "); |
9 | - public function setPlaceholder($value){ |
|
9 | + public function setPlaceholder($value) { |
|
10 | 10 | $this->getDataField()->setPlaceholder($value); |
11 | 11 | return $this; |
12 | 12 | } |
13 | 13 | |
14 | - public function setValue($value){ |
|
14 | + public function setValue($value) { |
|
15 | 15 | $this->getDataField()->setValue($value); |
16 | 16 | return $this; |
17 | 17 | } |
18 | 18 | |
19 | - public function setInputType($type){ |
|
20 | - if($type==="hidden") |
|
21 | - $this->addToProperty("style","display:none;"); |
|
19 | + public function setInputType($type) { |
|
20 | + if ($type==="hidden") |
|
21 | + $this->addToProperty("style", "display:none;"); |
|
22 | 22 | $this->getDataField()->setInputType($type); |
23 | 23 | return $this; |
24 | 24 | } |
@@ -11,14 +11,14 @@ discard block |
||
11 | 11 | |
12 | 12 | abstract public function addToProperty($name, $value, $separator=" "); |
13 | 13 | abstract public function addLabel($caption, $style="label-default", $leftSeparator=" "); |
14 | - abstract public function addContent($content,$before=false); |
|
14 | + abstract public function addContent($content, $before=false); |
|
15 | 15 | abstract public function getField(); |
16 | 16 | public function setFocus() { |
17 | 17 | $this->getField()->addToProperty("class", State::FOCUS); |
18 | 18 | } |
19 | 19 | |
20 | 20 | public function addLoading() { |
21 | - if ($this->_hasIcon === false) { |
|
21 | + if ($this->_hasIcon===false) { |
|
22 | 22 | throw new \Exception("Input must have an icon for showing a loader, use addIcon before"); |
23 | 23 | } |
24 | 24 | return $this->addToProperty("class", State::LOADING); |
@@ -26,44 +26,44 @@ discard block |
||
26 | 26 | |
27 | 27 | public function labeled($label, $direction=Direction::LEFT, $icon=NULL) { |
28 | 28 | $field=$this->getField(); |
29 | - $labelO=$field->addLabel($label,$direction===Direction::LEFT,$icon); |
|
30 | - $field->addToProperty("class", $direction . " labeled"); |
|
29 | + $labelO=$field->addLabel($label, $direction===Direction::LEFT, $icon); |
|
30 | + $field->addToProperty("class", $direction." labeled"); |
|
31 | 31 | return $labelO; |
32 | 32 | } |
33 | 33 | |
34 | 34 | public function labeledToCorner($icon, $direction=Direction::LEFT) { |
35 | - return $this->labeled("", $direction . " corner", $icon)->toCorner($direction); |
|
35 | + return $this->labeled("", $direction." corner", $icon)->toCorner($direction); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function addAction($action, $direction=Direction::RIGHT, $icon=NULL, $labeled=false) { |
39 | 39 | $field=$this->getField(); |
40 | 40 | $actionO=$action; |
41 | - if (\is_object($action) === false) { |
|
42 | - $actionO=new HtmlButton("action-" . $this->identifier, $action); |
|
41 | + if (\is_object($action)===false) { |
|
42 | + $actionO=new HtmlButton("action-".$this->identifier, $action); |
|
43 | 43 | if (isset($icon)) |
44 | 44 | $actionO->addIcon($icon, true, $labeled); |
45 | 45 | } |
46 | - $field->addToProperty("class", $direction . " action"); |
|
47 | - $field->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
|
46 | + $field->addToProperty("class", $direction." action"); |
|
47 | + $field->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
|
48 | 48 | return $actionO; |
49 | 49 | } |
50 | 50 | |
51 | - public function addDropdown($label="", $items=array(),$direction=Direction::RIGHT){ |
|
52 | - $labelO=new HtmlDropdown("dd-".$this->identifier,$label,$items); |
|
53 | - $labelO->asSelect("select-".$this->identifier,false,true); |
|
54 | - return $this->labeled($labelO,$direction); |
|
51 | + public function addDropdown($label="", $items=array(), $direction=Direction::RIGHT) { |
|
52 | + $labelO=new HtmlDropdown("dd-".$this->identifier, $label, $items); |
|
53 | + $labelO->asSelect("select-".$this->identifier, false, true); |
|
54 | + return $this->labeled($labelO, $direction); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | public function setTransparent() { |
58 | 58 | return $this->getField()->addToProperty("class", "transparent"); |
59 | 59 | } |
60 | 60 | |
61 | - public function setReadonly(){ |
|
61 | + public function setReadonly() { |
|
62 | 62 | $this->getDataField()->setProperty("readonly", ""); |
63 | 63 | } |
64 | 64 | |
65 | - public function setName($name){ |
|
66 | - $this->getDataField()->setProperty("name",$name); |
|
65 | + public function setName($name) { |
|
66 | + $this->getDataField()->setProperty("name", $name); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | } |
70 | 70 | \ No newline at end of file |
@@ -31,38 +31,38 @@ discard block |
||
31 | 31 | * @param string|HtmlSemDoubleElement $header |
32 | 32 | * @return \Ajax\semantic\html\collections\HtmlMessage |
33 | 33 | */ |
34 | - public function addHeader($header){ |
|
34 | + public function addHeader($header) { |
|
35 | 35 | $headerO=$header; |
36 | - if(\is_string($header)){ |
|
37 | - $headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div"); |
|
36 | + if (\is_string($header)) { |
|
37 | + $headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div"); |
|
38 | 38 | $headerO->setClass("header"); |
39 | 39 | $headerO->setContent($header); |
40 | 40 | } |
41 | - return $this->addContent($headerO,true); |
|
41 | + return $this->addContent($headerO, true); |
|
42 | 42 | } |
43 | 43 | |
44 | - public function addList($elements,$ordered=false){ |
|
45 | - $list=new HtmlList("list-".$this->identifier,$elements); |
|
44 | + public function addList($elements, $ordered=false) { |
|
45 | + $list=new HtmlList("list-".$this->identifier, $elements); |
|
46 | 46 | $list->setOrdered($ordered); |
47 | 47 | $list->setClass("ui list"); |
48 | 48 | $this->addContent($list); |
49 | 49 | } |
50 | 50 | |
51 | - public function setIcon($icon){ |
|
51 | + public function setIcon($icon) { |
|
52 | 52 | $this->addToProperty("class", "icon"); |
53 | - $this->wrapContent("<div class='content'>","</div>"); |
|
53 | + $this->wrapContent("<div class='content'>", "</div>"); |
|
54 | 54 | $this->icon=new HtmlIcon("icon-".$this->identifier, $icon); |
55 | 55 | return $this; |
56 | 56 | } |
57 | 57 | |
58 | - public function addLoader($loaderIcon="notched circle"){ |
|
58 | + public function addLoader($loaderIcon="notched circle") { |
|
59 | 59 | $this->setIcon($loaderIcon); |
60 | 60 | $this->icon->addToIcon("loading"); |
61 | 61 | return $this; |
62 | 62 | } |
63 | 63 | |
64 | - public function setDismissable($dismiss=true){ |
|
65 | - if($dismiss===true) |
|
64 | + public function setDismissable($dismiss=true) { |
|
65 | + if ($dismiss===true) |
|
66 | 66 | $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
67 | 67 | else |
68 | 68 | $this->close=NULL; |
@@ -73,34 +73,34 @@ discard block |
||
73 | 73 | * {@inheritDoc} |
74 | 74 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
75 | 75 | */ |
76 | - public function run(JsUtils $js){ |
|
76 | + public function run(JsUtils $js) { |
|
77 | 77 | parent::run($js); |
78 | - if(isset($this->close)){ |
|
78 | + if (isset($this->close)) { |
|
79 | 79 | $js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition('fade')"); |
80 | 80 | } |
81 | 81 | } |
82 | 82 | |
83 | - public function setState($visible=true){ |
|
84 | - $visible=($visible===true)?"visible":"hidden"; |
|
85 | - return $this->addToPropertyCtrl("class", $visible, array("visible","hidden")); |
|
83 | + public function setState($visible=true) { |
|
84 | + $visible=($visible===true) ? "visible" : "hidden"; |
|
85 | + return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden")); |
|
86 | 86 | } |
87 | 87 | |
88 | - public function setVariation($value="floating"){ |
|
89 | - return $this->addToPropertyCtrl("class", $value, array("floating","compact")); |
|
88 | + public function setVariation($value="floating") { |
|
89 | + return $this->addToPropertyCtrl("class", $value, array("floating", "compact")); |
|
90 | 90 | } |
91 | 91 | |
92 | - public function setStyle($style){ |
|
92 | + public function setStyle($style) { |
|
93 | 93 | return $this->addToPropertyCtrl("class", $style, Style::getConstants()); |
94 | 94 | } |
95 | 95 | |
96 | - public function setError(){ |
|
96 | + public function setError() { |
|
97 | 97 | return $this->setStyle("error"); |
98 | 98 | } |
99 | 99 | |
100 | - public function setMessage($message){ |
|
101 | - if(\is_array($this->content)){ |
|
100 | + public function setMessage($message) { |
|
101 | + if (\is_array($this->content)) { |
|
102 | 102 | $this->content[\sizeof($this->content)-1]=$message; |
103 | - }else |
|
103 | + } else |
|
104 | 104 | $this->setContent($message); |
105 | 105 | } |
106 | 106 | } |
107 | 107 | \ No newline at end of file |
@@ -17,48 +17,48 @@ discard block |
||
17 | 17 | * @since 2.2 |
18 | 18 | */ |
19 | 19 | class DataForm extends Widget { |
20 | - use FormFieldAsTrait,FormTrait; |
|
20 | + use FormFieldAsTrait, FormTrait; |
|
21 | 21 | |
22 | 22 | public function __construct($identifier, $modelInstance=NULL) { |
23 | - parent::__construct($identifier, null,$modelInstance); |
|
23 | + parent::__construct($identifier, null, $modelInstance); |
|
24 | 24 | $this->_instanceViewer=new FormInstanceViewer(); |
25 | 25 | $this->content=["form"=>new HtmlForm($identifier)]; |
26 | 26 | $this->_toolbarPosition=PositionInTable::BEFORETABLE; |
27 | 27 | } |
28 | 28 | |
29 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
29 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
30 | 30 | $this->_instanceViewer->setInstance($this->_modelInstance); |
31 | 31 | |
32 | 32 | $form=$this->content["form"]; |
33 | 33 | $this->_generateContent($form); |
34 | 34 | |
35 | - if(isset($this->_toolbar)){ |
|
35 | + if (isset($this->_toolbar)) { |
|
36 | 36 | $this->_setToolbarPosition($form); |
37 | 37 | } |
38 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"form",PositionInTable::AFTERTABLE]); |
|
39 | - return parent::compile($js,$view); |
|
38 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "form", PositionInTable::AFTERTABLE]); |
|
39 | + return parent::compile($js, $view); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param HtmlForm $form |
44 | 44 | */ |
45 | - protected function _generateContent($form){ |
|
46 | - $values= $this->_instanceViewer->getValues(); |
|
45 | + protected function _generateContent($form) { |
|
46 | + $values=$this->_instanceViewer->getValues(); |
|
47 | 47 | $count=$this->_instanceViewer->count(); |
48 | 48 | |
49 | 49 | $separators=$this->_instanceViewer->getSeparators(); |
50 | 50 | $size=\sizeof($separators); |
51 | - if($size===1){ |
|
52 | - foreach ($values as $v){ |
|
51 | + if ($size===1) { |
|
52 | + foreach ($values as $v) { |
|
53 | 53 | $form->addField($v); |
54 | 54 | } |
55 | - }else{ |
|
55 | + } else { |
|
56 | 56 | $separators[]=$count; |
57 | - for($i=0;$i<$size;$i++){ |
|
58 | - $fields=\array_slice($values, $separators[$i]+1,$separators[$i+1]-$separators[$i]); |
|
59 | - if(\sizeof($fields)===1){ |
|
57 | + for ($i=0; $i<$size; $i++) { |
|
58 | + $fields=\array_slice($values, $separators[$i]+1, $separators[$i+1]-$separators[$i]); |
|
59 | + if (\sizeof($fields)===1) { |
|
60 | 60 | $form->addField($fields[0]); |
61 | - }else |
|
61 | + } else |
|
62 | 62 | $form->addFields($fields); |
63 | 63 | } |
64 | 64 | } |
@@ -67,11 +67,11 @@ discard block |
||
67 | 67 | /** |
68 | 68 | * @return HtmlForm |
69 | 69 | */ |
70 | - protected function getForm(){ |
|
70 | + protected function getForm() { |
|
71 | 71 | return $this->content["form"]; |
72 | 72 | } |
73 | 73 | |
74 | - public function addSeparatorAfter($fieldNum){ |
|
74 | + public function addSeparatorAfter($fieldNum) { |
|
75 | 75 | $this->_instanceViewer->addSeparatorAfter($fieldNum); |
76 | 76 | return $this; |
77 | 77 | } |
@@ -85,26 +85,26 @@ discard block |
||
85 | 85 | return $this; |
86 | 86 | } |
87 | 87 | |
88 | - public function addSubmitInToolbar($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){ |
|
89 | - $button=new HtmlButton($identifier,$value,$cssStyle); |
|
90 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement); |
|
88 | + public function addSubmitInToolbar($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) { |
|
89 | + $button=new HtmlButton($identifier, $value, $cssStyle); |
|
90 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement); |
|
91 | 91 | return $this->addInToolbar($button); |
92 | 92 | } |
93 | 93 | |
94 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
95 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle){ |
|
96 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
97 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement); |
|
94 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
95 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle){ |
|
96 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
97 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement); |
|
98 | 98 | return $button; |
99 | - }, $index,$attributes); |
|
99 | + }, $index, $attributes); |
|
100 | 100 | } |
101 | 101 | |
102 | - public function fieldAsReset($index,$cssStyle=NULL,$attributes=NULL){ |
|
103 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
104 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
102 | + public function fieldAsReset($index, $cssStyle=NULL, $attributes=NULL) { |
|
103 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
104 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
105 | 105 | $button->setProperty("type", "reset"); |
106 | 106 | return $button; |
107 | - }, $index,$attributes); |
|
107 | + }, $index, $attributes); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |