@@ -130,12 +130,12 @@ |
||
130 | 130 | * @param string $tagName |
131 | 131 | * @return HtmlLabel |
132 | 132 | */ |
133 | - public function htmlLabel($identifier, $content="", $icon=NULL,$tagName="div") { |
|
134 | - return $this->addHtmlComponent(new HtmlLabel($identifier, $content,$icon, $tagName)); |
|
133 | + public function htmlLabel($identifier, $content="", $icon=NULL, $tagName="div") { |
|
134 | + return $this->addHtmlComponent(new HtmlLabel($identifier, $content, $icon, $tagName)); |
|
135 | 135 | } |
136 | 136 | |
137 | - public function htmlLabelGroups($identifier,$labels=array(),$attributes=array()){ |
|
138 | - return $this->addHtmlComponent(new HtmlLabelGroups($identifier,$labels,$attributes)); |
|
137 | + public function htmlLabelGroups($identifier, $labels=array(), $attributes=array()) { |
|
138 | + return $this->addHtmlComponent(new HtmlLabelGroups($identifier, $labels, $attributes)); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -13,7 +13,7 @@ |
||
13 | 13 | * @param int $rowCount |
14 | 14 | * @param int $colCount |
15 | 15 | */ |
16 | - public function htmlTable($identifier, $rowCount, $colCount){ |
|
16 | + public function htmlTable($identifier, $rowCount, $colCount) { |
|
17 | 17 | return $this->addHtmlComponent(new HtmlTable($identifier, $rowCount, $colCount)); |
18 | 18 | } |
19 | 19 | } |
20 | 20 | \ No newline at end of file |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * @param string $action one of "select","auto","activate","combo","nothing","hide" |
18 | 18 | * @return \Ajax\semantic\components\Dropdown |
19 | 19 | */ |
20 | - public function setAction($action){ |
|
21 | - return $this->setParamCtrl("action", $action,array("select","auto","activate","combo","nothing","hide")); |
|
20 | + public function setAction($action) { |
|
21 | + return $this->setParamCtrl("action", $action, array("select", "auto", "activate", "combo", "nothing", "hide")); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | * @param string $event Event used to trigger dropdown (Hover, Click, Custom Event) |
27 | 27 | * @return \Ajax\semantic\components\Dropdown |
28 | 28 | */ |
29 | - public function setOn($event){ |
|
29 | + public function setOn($event) { |
|
30 | 30 | return $this->setParam("on", $event); |
31 | 31 | } |
32 | 32 | |
33 | - public function setFullTextSearch($value){ |
|
33 | + public function setFullTextSearch($value) { |
|
34 | 34 | return $this->setParam("fullTextSearch", $value); |
35 | 35 | } |
36 | 36 | } |
37 | 37 | \ No newline at end of file |
@@ -16,11 +16,11 @@ |
||
16 | 16 | return $this; |
17 | 17 | } |
18 | 18 | |
19 | - public function showDimmer(){ |
|
19 | + public function showDimmer() { |
|
20 | 20 | return $this->setBehavior("hide dimmer"); |
21 | 21 | } |
22 | 22 | |
23 | - public function setInverted(){ |
|
23 | + public function setInverted() { |
|
24 | 24 | $this->params["inverted"]=true; |
25 | 25 | } |
26 | 26 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | return $this->setParam("onShow", "%function(){".$jsCode."}%"); |
31 | 31 | } |
32 | 32 | |
33 | - public function setExclusive($value){ |
|
33 | + public function setExclusive($value) { |
|
34 | 34 | return $this->setParam("exclusive", $value); |
35 | 35 | } |
36 | 36 | |
@@ -39,15 +39,15 @@ discard block |
||
39 | 39 | * @param string $popup the css selector of the popup |
40 | 40 | * @return \Ajax\semantic\components\Popup |
41 | 41 | */ |
42 | - public function setPopup($popup){ |
|
42 | + public function setPopup($popup) { |
|
43 | 43 | return $this->setParam("popup", $popup); |
44 | 44 | } |
45 | 45 | |
46 | - public function setInline($value){ |
|
46 | + public function setInline($value) { |
|
47 | 47 | return $this->setParam("inline", $value); |
48 | 48 | } |
49 | 49 | |
50 | - public function setPosition($value){ |
|
50 | + public function setPosition($value) { |
|
51 | 51 | return $this->setParam("position", $value); |
52 | 52 | } |
53 | 53 | //TODO other events implementation |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | public function fromArray($array) { |
70 | - foreach ( $array as $key => $value ) { |
|
70 | + foreach ($array as $key => $value) { |
|
71 | 71 | $this->{$key}=$value; |
72 | 72 | } |
73 | 73 | return $this; |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | |
80 | 80 | public function JsonSerialize() { |
81 | 81 | $vars=get_object_vars($this); |
82 | - $result=array (); |
|
83 | - foreach ( $vars as $k => $v ) { |
|
82 | + $result=array(); |
|
83 | + foreach ($vars as $k => $v) { |
|
84 | 84 | if (isset($v)) |
85 | 85 | $result[$k]=$v; |
86 | 86 | } |
@@ -89,6 +89,6 @@ discard block |
||
89 | 89 | |
90 | 90 | public function search($query, $field="title") { |
91 | 91 | $value=$this->$field; |
92 | - return \stripos($value, $query) !== false; |
|
92 | + return \stripos($value, $query)!==false; |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | \ No newline at end of file |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | public function __toString() { |
27 | - $result="\"" . $this->id . "\": { \"name\": \"" . $this->name . "\"," . $this->results . "}"; |
|
27 | + $result="\"".$this->id."\": { \"name\": \"".$this->name."\",".$this->results."}"; |
|
28 | 28 | return $result; |
29 | 29 | } |
30 | 30 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | public function search($query, $field="title") { |
59 | 59 | $result=$this->results->_search($query, $field); |
60 | - if ($result !== false) { |
|
60 | + if ($result!==false) { |
|
61 | 61 | return new SearchCategory($this->id, $this->name, $result); |
62 | 62 | } |
63 | 63 | return false; |
@@ -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() { |
@@ -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 | } |