@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | private $categories; |
7 | 7 | |
8 | 8 | public function __construct() { |
9 | - $this->categories=array (); |
|
9 | + $this->categories=array(); |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | public function add($results, $category) { |
@@ -14,17 +14,17 @@ discard block |
||
14 | 14 | if (\array_key_exists($category, $this->categories)) { |
15 | 15 | $this->categories[$category]->addResults($results); |
16 | 16 | } else { |
17 | - $categoryO=new SearchCategory("category" . $count, $category, $results); |
|
17 | + $categoryO=new SearchCategory("category".$count, $category, $results); |
|
18 | 18 | $this->categories[$category]=$categoryO; |
19 | 19 | } |
20 | 20 | return $this; |
21 | 21 | } |
22 | 22 | |
23 | 23 | public function search($query, $field="title") { |
24 | - $result=array (); |
|
25 | - foreach ( $this->categories as $category ) { |
|
24 | + $result=array(); |
|
25 | + foreach ($this->categories as $category) { |
|
26 | 26 | $r=$category->search($query, $field); |
27 | - if ($r !== false) |
|
27 | + if ($r!==false) |
|
28 | 28 | $result[]=$r; |
29 | 29 | } |
30 | 30 | $this->categories=$result; |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | public function __toString() { |
35 | - return "{\"results\":{" . \implode(",", \array_values($this->categories)) . "}}"; |
|
35 | + return "{\"results\":{".\implode(",", \array_values($this->categories))."}}"; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function getResponse() { |
@@ -24,8 +24,9 @@ |
||
24 | 24 | $result=array (); |
25 | 25 | foreach ( $this->categories as $category ) { |
26 | 26 | $r=$category->search($query, $field); |
27 | - if ($r !== false) |
|
28 | - $result[]=$r; |
|
27 | + if ($r !== false) { |
|
28 | + $result[]=$r; |
|
29 | + } |
|
29 | 30 | } |
30 | 31 | $this->categories=$result; |
31 | 32 | return $this; |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | public function fromDatabaseObjects($objects, $function) { |
8 | 8 | if (isset($objects)) { |
9 | - foreach ( $objects as $object ) { |
|
9 | + foreach ($objects as $object) { |
|
10 | 10 | $this->fromDatabaseObject($object, $function); |
11 | 11 | } |
12 | 12 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | private $elements; |
9 | 9 | |
10 | 10 | public function __construct($objects=NULL) { |
11 | - $this->elements=array (); |
|
11 | + $this->elements=array(); |
|
12 | 12 | if (isset($objects)) { |
13 | 13 | if (\is_array($objects)) { |
14 | 14 | $this->addResults($objects); |
@@ -23,20 +23,20 @@ discard block |
||
23 | 23 | $this->elements[]=$object; |
24 | 24 | return $this; |
25 | 25 | } |
26 | - if (\is_array($object) === false) { |
|
27 | - $object=[ "title" => $object ]; |
|
26 | + if (\is_array($object)===false) { |
|
27 | + $object=["title" => $object]; |
|
28 | 28 | } |
29 | 29 | $this->elements[]=new SearchResult($object); |
30 | 30 | return $this; |
31 | 31 | } |
32 | 32 | |
33 | 33 | public function addResults($objects) { |
34 | - if (\is_array($objects) === false) { |
|
34 | + if (\is_array($objects)===false) { |
|
35 | 35 | return $this->addResult($objects); |
36 | 36 | } |
37 | - if (JArray::dimension($objects) === 1) { |
|
38 | - foreach ( $objects as $object ) { |
|
39 | - $this->addResult([ "title" => $object ]); |
|
37 | + if (JArray::dimension($objects)===1) { |
|
38 | + foreach ($objects as $object) { |
|
39 | + $this->addResult(["title" => $object]); |
|
40 | 40 | } |
41 | 41 | } else |
42 | 42 | $this->elements=\array_merge($this->elements, $objects); |
@@ -44,21 +44,21 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | public function _search($query, $field="title") { |
47 | - $result=array (); |
|
48 | - foreach ( $this->elements as $element ) { |
|
47 | + $result=array(); |
|
48 | + foreach ($this->elements as $element) { |
|
49 | 49 | if ($element instanceof SearchResult) { |
50 | - if ($element->search($query, $field) !== false) |
|
50 | + if ($element->search($query, $field)!==false) |
|
51 | 51 | $result[]=$element->asArray(); |
52 | 52 | } else { |
53 | 53 | if (\array_key_exists($field, $element)) { |
54 | 54 | $value=$element[$field]; |
55 | - if (\stripos($value, $query) !== false) { |
|
55 | + if (\stripos($value, $query)!==false) { |
|
56 | 56 | $result[]=$element; |
57 | 57 | } |
58 | 58 | } |
59 | 59 | } |
60 | 60 | } |
61 | - if (\sizeof($result) > 0) { |
|
61 | + if (\sizeof($result)>0) { |
|
62 | 62 | return $result; |
63 | 63 | } |
64 | 64 | return false; |
@@ -66,13 +66,13 @@ discard block |
||
66 | 66 | |
67 | 67 | public function search($query, $field="title") { |
68 | 68 | $result=$this->_search($query, $field); |
69 | - if ($result === false) |
|
69 | + if ($result===false) |
|
70 | 70 | $result=NULL; |
71 | 71 | return new SearchResults($result); |
72 | 72 | } |
73 | 73 | |
74 | 74 | public function __toString() { |
75 | - $result="\"results\": " . \json_encode($this->elements); |
|
75 | + $result="\"results\": ".\json_encode($this->elements); |
|
76 | 76 | return $result; |
77 | 77 | } |
78 | 78 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | } |
82 | 82 | |
83 | 83 | public function getResponse() { |
84 | - return "{" . $this . "}"; |
|
84 | + return "{".$this."}"; |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
@@ -38,8 +38,9 @@ discard block |
||
38 | 38 | foreach ( $objects as $object ) { |
39 | 39 | $this->addResult([ "title" => $object ]); |
40 | 40 | } |
41 | - } else |
|
42 | - $this->elements=\array_merge($this->elements, $objects); |
|
41 | + } else { |
|
42 | + $this->elements=\array_merge($this->elements, $objects); |
|
43 | + } |
|
43 | 44 | return $this; |
44 | 45 | } |
45 | 46 | |
@@ -47,8 +48,9 @@ discard block |
||
47 | 48 | $result=array (); |
48 | 49 | foreach ( $this->elements as $element ) { |
49 | 50 | if ($element instanceof SearchResult) { |
50 | - if ($element->search($query, $field) !== false) |
|
51 | - $result[]=$element->asArray(); |
|
51 | + if ($element->search($query, $field) !== false) { |
|
52 | + $result[]=$element->asArray(); |
|
53 | + } |
|
52 | 54 | } else { |
53 | 55 | if (\array_key_exists($field, $element)) { |
54 | 56 | $value=$element[$field]; |
@@ -66,8 +68,9 @@ discard block |
||
66 | 68 | |
67 | 69 | public function search($query, $field="title") { |
68 | 70 | $result=$this->_search($query, $field); |
69 | - if ($result === false) |
|
70 | - $result=NULL; |
|
71 | + if ($result === false) { |
|
72 | + $result=NULL; |
|
73 | + } |
|
71 | 74 | return new SearchResults($result); |
72 | 75 | } |
73 | 76 |
@@ -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; |
@@ -96,9 +96,9 @@ discard block |
||
96 | 96 | } |
97 | 97 | |
98 | 98 | public static function radios($name, $items=array(), $label=NULL, $value=null, $type=NULL) { |
99 | - $fields=array (); |
|
99 | + $fields=array(); |
|
100 | 100 | $i=0; |
101 | - foreach ( $items as $val => $caption ) { |
|
101 | + foreach ($items as $val => $caption) { |
|
102 | 102 | $itemO=new HtmlFormRadio($name."-".$i++, $name, $caption, $val, $type); |
103 | 103 | if ($val===$value) { |
104 | 104 | $itemO->getField()->getField()->setProperty("checked", ""); |
@@ -112,9 +112,9 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | public static function checkeds($name, $items=array(), $label=NULL, $values=array(), $type=NULL) { |
115 | - $fields=array (); |
|
115 | + $fields=array(); |
|
116 | 116 | $i=0; |
117 | - foreach ( $items as $val => $caption ) { |
|
117 | + foreach ($items as $val => $caption) { |
|
118 | 118 | $itemO=new HtmlFormCheckbox($name."-".$i++, $name, $caption, $val, $type); |
119 | 119 | if (\array_search($val, $values)!==false) { |
120 | 120 | $itemO->getField()->getField()->setProperty("checked", ""); |
@@ -29,12 +29,14 @@ discard block |
||
29 | 29 | if (\is_string($end)) { |
30 | 30 | $label=$end; |
31 | 31 | \array_pop($fields); |
32 | - } else |
|
33 | - $label=NULL; |
|
32 | + } else { |
|
33 | + $label=NULL; |
|
34 | + } |
|
34 | 35 | } |
35 | 36 | } |
36 | - if (isset($label)) |
|
37 | - $this->setLabel($label); |
|
37 | + if (isset($label)) { |
|
38 | + $this->setLabel($label); |
|
39 | + } |
|
38 | 40 | foreach ( $fields as $field ) { |
39 | 41 | $this->addItem($field); |
40 | 42 | } |
@@ -65,8 +67,9 @@ discard block |
||
65 | 67 | if ($this->_equalWidth) { |
66 | 68 | $count=$this->count(); |
67 | 69 | $this->addToProperty("class", Wide::getConstants()["W".$count]." fields"); |
68 | - } else |
|
69 | - $this->addToProperty("class", "fields"); |
|
70 | + } else { |
|
71 | + $this->addToProperty("class", "fields"); |
|
72 | + } |
|
70 | 73 | return parent::compile($js, $view); |
71 | 74 | } |
72 | 75 | |
@@ -106,8 +109,9 @@ discard block |
||
106 | 109 | $fields[]=$itemO; |
107 | 110 | } |
108 | 111 | $radios=new HtmlFormFields("fields-".$name, $fields); |
109 | - if (isset($label)) |
|
110 | - $radios->setLabel($label)->setProperty("for", $name); |
|
112 | + if (isset($label)) { |
|
113 | + $radios->setLabel($label)->setProperty("for", $name); |
|
114 | + } |
|
111 | 115 | return $radios; |
112 | 116 | } |
113 | 117 | |
@@ -122,8 +126,9 @@ discard block |
||
122 | 126 | $fields[]=$itemO; |
123 | 127 | } |
124 | 128 | $radios=new HtmlFormFields("fields-".$name, $fields); |
125 | - if (isset($label)) |
|
126 | - $radios->setLabel($label)->setProperty("for", $name); |
|
129 | + if (isset($label)) { |
|
130 | + $radios->setLabel($label)->setProperty("for", $name); |
|
131 | + } |
|
127 | 132 | return $radios; |
128 | 133 | } |
129 | 134 |
@@ -13,6 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | class HtmlIconGroups extends HtmlSemCollection { |
15 | 15 | |
16 | + /** |
|
17 | + * @param string $identifier |
|
18 | + */ |
|
16 | 19 | public function __construct($identifier, $icons=array(), $size="") { |
17 | 20 | parent::__construct($identifier, "i", "icons"); |
18 | 21 | $this->addItems($icons); |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Ajax\semantic\html\base\HtmlSemDoubleElement; |
6 | 6 | use Ajax\JsUtils; |
7 | 7 | use Ajax\service\JArray; |
8 | - |
|
9 | 8 | use Ajax\semantic\html\base\constants\State; |
10 | 9 | |
11 | 10 | class HtmlProgress extends HtmlSemDoubleElement { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | class HtmlFormCheckbox extends HtmlFormField { |
16 | 16 | use CheckboxTrait; |
17 | 17 | public function __construct($identifier, $label=NULL, $value=NULL, $type=NULL) { |
18 | - parent::__construct("field-".$identifier, new HtmlCheckbox($identifier,$label,$value,$type)); |
|
18 | + parent::__construct("field-".$identifier, new HtmlCheckbox($identifier, $label, $value, $type)); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public static function slider($identifier, $label="", $value=NULL) { |
@@ -10,8 +10,9 @@ |
||
10 | 10 | use TextFieldsTrait; |
11 | 11 | |
12 | 12 | public function __construct($identifier, $label=NULL,$value=NULL,$placeholder=NULL,$rows=NULL) { |
13 | - if(!isset($placeholder)) |
|
14 | - $placeholder=$label; |
|
13 | + if(!isset($placeholder)) { |
|
14 | + $placeholder=$label; |
|
15 | + } |
|
15 | 16 | parent::__construct("field-".$identifier, new HtmlTextarea($identifier,$value,$placeholder,$rows), $label); |
16 | 17 | } |
17 | 18 |
@@ -9,17 +9,17 @@ |
||
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 |
@@ -7,17 +7,17 @@ |
||
7 | 7 | |
8 | 8 | class HtmlFormDropdown extends HtmlFormField { |
9 | 9 | |
10 | - public function __construct($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false) { |
|
11 | - parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier,$value,$items))->asSelect($identifier,$multiple), $label); |
|
10 | + public function __construct($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false) { |
|
11 | + parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items))->asSelect($identifier, $multiple), $label); |
|
12 | 12 | } |
13 | 13 | |
14 | - public function setItems($items){ |
|
14 | + public function setItems($items) { |
|
15 | 15 | return $this->getField()->setItems($items); |
16 | 16 | } |
17 | - public function addItem($item,$value=NULL,$image=NULL){ |
|
18 | - return $this->getField()->addItem($item,$value,$image); |
|
17 | + public function addItem($item, $value=NULL, $image=NULL) { |
|
18 | + return $this->getField()->addItem($item, $value, $image); |
|
19 | 19 | } |
20 | - public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value=NULL){ |
|
21 | - return new HtmlFormDropdown($identifier,$items,$label,$value,true); |
|
20 | + public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value=NULL) { |
|
21 | + return new HtmlFormDropdown($identifier, $items, $label, $value, true); |
|
22 | 22 | } |
23 | 23 | } |
24 | 24 | \ No newline at end of file |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | parent::__construct($identifier, "div","field"); |
15 | 15 | $this->content=array(); |
16 | 16 | $this->_states=[State::ERROR,State::DISABLED]; |
17 | - if(isset($label)) |
|
18 | - $this->setLabel($label); |
|
17 | + if(isset($label)) { |
|
18 | + $this->setLabel($label); |
|
19 | + } |
|
19 | 20 | $this->setField($field); |
20 | 21 | } |
21 | 22 | |
@@ -45,8 +46,9 @@ discard block |
||
45 | 46 | * @return mixed |
46 | 47 | */ |
47 | 48 | public function getLabel(){ |
48 | - if(\array_key_exists("label", $this->content)) |
|
49 | - return $this->content["label"]; |
|
49 | + if(\array_key_exists("label", $this->content)) { |
|
50 | + return $this->content["label"]; |
|
51 | + } |
|
50 | 52 | } |
51 | 53 | |
52 | 54 | /** |
@@ -12,34 +12,34 @@ discard block |
||
12 | 12 | class HtmlFormField extends HtmlSemDoubleElement { |
13 | 13 | protected $_container; |
14 | 14 | protected $_validation; |
15 | - public function __construct($identifier, $field,$label=NULL) { |
|
16 | - parent::__construct($identifier, "div","field"); |
|
15 | + public function __construct($identifier, $field, $label=NULL) { |
|
16 | + parent::__construct($identifier, "div", "field"); |
|
17 | 17 | $this->content=array(); |
18 | - $this->_states=[State::ERROR,State::DISABLED]; |
|
19 | - if(isset($label)) |
|
18 | + $this->_states=[State::ERROR, State::DISABLED]; |
|
19 | + if (isset($label)) |
|
20 | 20 | $this->setLabel($label); |
21 | 21 | $this->setField($field); |
22 | 22 | $this->_validation=NULL; |
23 | 23 | } |
24 | 24 | |
25 | - public function addPointingLabel($label,$pointing=Direction::NONE){ |
|
26 | - $labelO=new HtmlLabel("",$label); |
|
25 | + public function addPointingLabel($label, $pointing=Direction::NONE) { |
|
26 | + $labelO=new HtmlLabel("", $label); |
|
27 | 27 | $labelO->setPointing($pointing); |
28 | - $this->addContent($labelO,$pointing==="below" || $pointing==="right"); |
|
28 | + $this->addContent($labelO, $pointing==="below" || $pointing==="right"); |
|
29 | 29 | return $labelO; |
30 | 30 | } |
31 | 31 | |
32 | - public function setLabel($label){ |
|
32 | + public function setLabel($label) { |
|
33 | 33 | $labelO=$label; |
34 | - if(\is_string($label)){ |
|
35 | - $labelO=new HtmlSemDoubleElement("","label",""); |
|
34 | + if (\is_string($label)) { |
|
35 | + $labelO=new HtmlSemDoubleElement("", "label", ""); |
|
36 | 36 | $labelO->setContent($label); |
37 | - $labelO->setProperty("for", \str_replace("field-", "",$this->identifier)); |
|
37 | + $labelO->setProperty("for", \str_replace("field-", "", $this->identifier)); |
|
38 | 38 | } |
39 | 39 | $this->content["label"]=$labelO; |
40 | 40 | } |
41 | 41 | |
42 | - public function setField($field){ |
|
42 | + public function setField($field) { |
|
43 | 43 | $this->content["field"]=$field; |
44 | 44 | } |
45 | 45 | |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * Returns the label or null |
48 | 48 | * @return mixed |
49 | 49 | */ |
50 | - public function getLabel(){ |
|
51 | - if(\array_key_exists("label", $this->content)) |
|
50 | + public function getLabel() { |
|
51 | + if (\array_key_exists("label", $this->content)) |
|
52 | 52 | return $this->content["label"]; |
53 | 53 | } |
54 | 54 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * Return the field |
57 | 57 | * @return mixed |
58 | 58 | */ |
59 | - public function getField(){ |
|
59 | + public function getField() { |
|
60 | 60 | return $this->content["field"]; |
61 | 61 | } |
62 | 62 | |
@@ -64,14 +64,14 @@ discard block |
||
64 | 64 | * Return the field with data |
65 | 65 | * @return mixed |
66 | 66 | */ |
67 | - public function getDataField(){ |
|
67 | + public function getDataField() { |
|
68 | 68 | return $this->content["field"]; |
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
72 | 72 | * puts the label before or behind |
73 | 73 | */ |
74 | - public function swapLabel(){ |
|
74 | + public function swapLabel() { |
|
75 | 75 | $label=$this->getLabel(); |
76 | 76 | unset($this->content["label"]); |
77 | 77 | $this->content["label"]=$label; |
@@ -82,31 +82,31 @@ discard block |
||
82 | 82 | * @param int $width |
83 | 83 | * @return \Ajax\semantic\html\collections\form\HtmlFormField |
84 | 84 | */ |
85 | - public function setWidth($width){ |
|
86 | - if(\is_int($width)){ |
|
85 | + public function setWidth($width) { |
|
86 | + if (\is_int($width)) { |
|
87 | 87 | $width=Wide::getConstants()["W".$width]; |
88 | 88 | } |
89 | 89 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
90 | - if(isset($this->_container)){ |
|
90 | + if (isset($this->_container)) { |
|
91 | 91 | $this->_container->setEqualWidth(false); |
92 | 92 | } |
93 | - return $this->addToPropertyCtrl("class", "wide",array("wide")); |
|
93 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Field displays an error state |
98 | 98 | * @return \Ajax\semantic\html\collections\form\HtmlFormField |
99 | 99 | */ |
100 | - public function setError(){ |
|
100 | + public function setError() { |
|
101 | 101 | return $this->addToProperty("class", "error"); |
102 | 102 | } |
103 | 103 | |
104 | - public function setInline(){ |
|
104 | + public function setInline() { |
|
105 | 105 | return $this->addToProperty("class", "inline"); |
106 | 106 | } |
107 | 107 | |
108 | - public function jsState($state){ |
|
109 | - return $this->jsDoJquery("addClass",$state); |
|
108 | + public function jsState($state) { |
|
109 | + return $this->jsDoJquery("addClass", $state); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | public function setContainer($_container) { |
@@ -114,23 +114,23 @@ discard block |
||
114 | 114 | return $this; |
115 | 115 | } |
116 | 116 | |
117 | - public function setReadonly(){ |
|
117 | + public function setReadonly() { |
|
118 | 118 | $this->getField()->setProperty("readonly", ""); |
119 | 119 | } |
120 | 120 | |
121 | - public function addRule($type,$prompt=NULL,$value=NULL){ |
|
121 | + public function addRule($type, $prompt=NULL, $value=NULL) { |
|
122 | 122 | $field=$this->getDataField(); |
123 | - if(isset($field)){ |
|
124 | - if(!isset($this->_validation)){ |
|
123 | + if (isset($field)) { |
|
124 | + if (!isset($this->_validation)) { |
|
125 | 125 | $this->_validation=new FieldValidation($field->getIdentifier()); |
126 | 126 | } |
127 | - $this->_validation->addRule($type,$prompt,$value); |
|
127 | + $this->_validation->addRule($type, $prompt, $value); |
|
128 | 128 | } |
129 | 129 | return $this; |
130 | 130 | } |
131 | 131 | |
132 | - public function addRules(array $rules){ |
|
133 | - foreach ($rules as $rule){ |
|
132 | + public function addRules(array $rules) { |
|
133 | + foreach ($rules as $rule) { |
|
134 | 134 | $this->addRule($rule); |
135 | 135 | } |
136 | 136 | return $this; |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | use Ajax\semantic\html\content\HtmlAccordionMenuItem; |
7 | 7 | use Ajax\JsUtils; |
8 | 8 | |
9 | -class HtmlAccordionMenu extends HtmlMenu{ |
|
9 | +class HtmlAccordionMenu extends HtmlMenu { |
|
10 | 10 | protected $params=array(); |
11 | 11 | |
12 | - public function __construct( $identifier, $items=array() ){ |
|
13 | - parent::__construct( $identifier, $items); |
|
12 | + public function __construct($identifier, $items=array()) { |
|
13 | + parent::__construct($identifier, $items); |
|
14 | 14 | $this->addToProperty("class", "accordion"); |
15 | 15 | $this->setVertical(); |
16 | 16 | } |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | protected function createItem($value) { |
23 | 23 | $title=$value; |
24 | 24 | $content=""; |
25 | - if(\is_array($value)){ |
|
26 | - $title=@$value[0];$content=@$value[1]; |
|
25 | + if (\is_array($value)) { |
|
26 | + $title=@$value[0]; $content=@$value[1]; |
|
27 | 27 | } |
28 | 28 | $itemO=new HtmlAccordionMenuItem("item-".$this->identifier."-".$this->count(), $title, $content); |
29 | 29 | return $itemO->setClass("item"); |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | * @see BaseHtml::run() |
35 | 35 | */ |
36 | 36 | public function run(JsUtils $js) { |
37 | - if(isset($this->_bsComponent)===false) |
|
38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
37 | + if (isset($this->_bsComponent)===false) |
|
38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier, $this->params); |
|
39 | 39 | $this->addEventsOnRun($js); |
40 | 40 | return $this->_bsComponent; |
41 | 41 | } |
42 | 42 | |
43 | - public function setExclusive($value){ |
|
43 | + public function setExclusive($value) { |
|
44 | 44 | $this->params["exclusive"]=$value; |
45 | 45 | } |
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -62,8 +62,9 @@ |
||
62 | 62 | * @see BaseHtml::run() |
63 | 63 | */ |
64 | 64 | public function run(JsUtils $js) { |
65 | - if(isset($this->_bsComponent)===false) |
|
66 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
65 | + if(isset($this->_bsComponent)===false) { |
|
66 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
67 | + } |
|
67 | 68 | $this->addEventsOnRun($js); |
68 | 69 | return $this->_bsComponent; |
69 | 70 | } |