@@ -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 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | public function __construct($id=NULL, $title=NULL, $description=NULL, $image=NULL, $price=NULL) { |
13 | 13 | if (\is_array($id)) { |
14 | 14 | $this->fromArray($id); |
15 | - } else { |
|
15 | + }else { |
|
16 | 16 | $this->id=$id; |
17 | 17 | $this->title=$title; |
18 | 18 | $this->description=$description; |
@@ -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 |
@@ -8,11 +8,11 @@ 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); |
15 | - } else { |
|
15 | + }else { |
|
16 | 16 | $this->addResult($objects); |
17 | 17 | } |
18 | 18 | } |
@@ -23,42 +23,42 @@ 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 | - } else |
|
41 | + }else |
|
42 | 42 | $this->elements=\array_merge($this->elements, $objects); |
43 | 43 | return $this; |
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 | - } else { |
|
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 | /** |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | class HtmlDimmer extends HtmlSemDoubleElement { |
11 | 11 | private $_container; |
12 | - private $_params=array (); |
|
12 | + private $_params=array(); |
|
13 | 13 | private $_inverted; |
14 | 14 | |
15 | 15 | public function __construct($identifier, $content=NULL) { |
@@ -19,14 +19,14 @@ discard block |
||
19 | 19 | } |
20 | 20 | |
21 | 21 | public function setContent($content) { |
22 | - $this->content=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "content", new HtmlSemDoubleElement("", "div", "center", $content)); |
|
22 | + $this->content=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content", new HtmlSemDoubleElement("", "div", "center", $content)); |
|
23 | 23 | return $this; |
24 | 24 | } |
25 | 25 | |
26 | 26 | public function asIcon($icon, $title, $subHeader=NULL) { |
27 | - $header=new HtmlHeader("header-" . $this->identifier); |
|
27 | + $header=new HtmlHeader("header-".$this->identifier); |
|
28 | 28 | $header->asIcon($icon, $title, $subHeader); |
29 | - if ($this->_inverted === false) |
|
29 | + if ($this->_inverted===false) |
|
30 | 30 | $header->setInverted(); |
31 | 31 | return $this->setContent($header); |
32 | 32 | } |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | |
44 | 44 | public function run(JsUtils $js) { |
45 | 45 | if ($this->_container instanceof HtmlSingleElement) |
46 | - $this->_bsComponent=$js->semantic()->dimmer("#" . $this->_container->getIdentifier(), $this->_params); |
|
46 | + $this->_bsComponent=$js->semantic()->dimmer("#".$this->_container->getIdentifier(), $this->_params); |
|
47 | 47 | return parent::run($js); |
48 | 48 | } |
49 | 49 | |
50 | 50 | public function jsShow() { |
51 | - if (isset($this->_container) === true) |
|
52 | - return '$("#.' . $this->_container->getIdentifier() . ').dimmer("show");'; |
|
51 | + if (isset($this->_container)===true) |
|
52 | + return '$("#.'.$this->_container->getIdentifier().').dimmer("show");'; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public function setBlurring() { |
@@ -8,13 +8,13 @@ discard block |
||
8 | 8 | use Ajax\semantic\html\base\constants\Direction; |
9 | 9 | |
10 | 10 | class HtmlSearch extends HtmlSemDoubleElement { |
11 | - private $_elements=array (); |
|
12 | - private $_params=array (); |
|
13 | - private $_searchFields=array ("title" ); |
|
11 | + private $_elements=array(); |
|
12 | + private $_params=array(); |
|
13 | + private $_searchFields=array("title"); |
|
14 | 14 | private $_local=false; |
15 | 15 | |
16 | 16 | public function __construct($identifier, $placeholder=NULL, $icon=NULL) { |
17 | - parent::__construct("search-" . $identifier, "div", "ui search", array ()); |
|
17 | + parent::__construct("search-".$identifier, "div", "ui search", array()); |
|
18 | 18 | $this->createField($placeholder, $icon); |
19 | 19 | $this->createResult(); |
20 | 20 | $this->_params["type"]="standard"; |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | |
23 | 23 | private function createField($placeholder=NULL, $icon=NULL) { |
24 | 24 | $field=new HtmlInput($this->identifier); |
25 | - if (isset($placeholder) === true) |
|
25 | + if (isset($placeholder)===true) |
|
26 | 26 | $field->setPlaceholder($placeholder); |
27 | - if (isset($icon) === true) |
|
27 | + if (isset($icon)===true) |
|
28 | 28 | $field->addIcon($icon, Direction::RIGHT); |
29 | 29 | $field->getField()->setClass("prompt"); |
30 | 30 | $this->content["field"]=$field; |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | private function createResult() { |
35 | - $this->content["result"]=new HtmlSemDoubleElement("results-" . $this->identifier, "div", "results"); |
|
35 | + $this->content["result"]=new HtmlSemDoubleElement("results-".$this->identifier, "div", "results"); |
|
36 | 36 | return $this->content["result"]; |
37 | 37 | } |
38 | 38 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | public function setUrl($url) { |
52 | - $this->_params["apiSettings"]="%{url: %quote%" . $url . "%quote%}%"; |
|
52 | + $this->_params["apiSettings"]="%{url: %quote%".$url."%quote%}%"; |
|
53 | 53 | return $this; |
54 | 54 | } |
55 | 55 | |
@@ -72,16 +72,16 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | public function run(JsUtils $js) { |
75 | - $this->_params["onSelect"]='%function(result,response){$(%quote%#' . $this->identifier . '%quote%).trigger(%quote%onSelect%quote%, {%quote%result%quote%: result, %quote%response%quote%:response} );}%'; |
|
75 | + $this->_params["onSelect"]='%function(result,response){$(%quote%#'.$this->identifier.'%quote%).trigger(%quote%onSelect%quote%, {%quote%result%quote%: result, %quote%response%quote%:response} );}%'; |
|
76 | 76 | $searchFields=\json_encode($this->_searchFields); |
77 | 77 | $searchFields=str_ireplace("\"", "%quote%", $searchFields); |
78 | - $this->_params["searchFields"]="%" . $searchFields . "%"; |
|
79 | - if ($this->_local === true) { |
|
78 | + $this->_params["searchFields"]="%".$searchFields."%"; |
|
79 | + if ($this->_local===true) { |
|
80 | 80 | $this->_params["source"]="%content%"; |
81 | - $this->addEvent("beforeExecute", "var content=" . $this->resultsToJson() . ";"); |
|
81 | + $this->addEvent("beforeExecute", "var content=".$this->resultsToJson().";"); |
|
82 | 82 | } |
83 | - if (isset($this->_bsComponent) === false) { |
|
84 | - $this->_bsComponent=$js->semantic()->search("#" . $this->identifier, $this->_params); |
|
83 | + if (isset($this->_bsComponent)===false) { |
|
84 | + $this->_bsComponent=$js->semantic()->search("#".$this->identifier, $this->_params); |
|
85 | 85 | } |
86 | 86 | $this->addEventsOnRun($js); |
87 | 87 | return $this->_bsComponent; |
@@ -8,8 +8,8 @@ discard block |
||
8 | 8 | use Ajax\semantic\html\elements\HtmlIcon; |
9 | 9 | |
10 | 10 | trait BaseTrait { |
11 | - protected $_variations=[ ]; |
|
12 | - protected $_states=[ ]; |
|
11 | + protected $_variations=[]; |
|
12 | + protected $_states=[]; |
|
13 | 13 | protected $_baseClass; |
14 | 14 | |
15 | 15 | protected abstract function setPropertyCtrl($name, $value, $typeCtrl); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $this->setProperty("class", $this->_baseClass); |
38 | 38 | if (\is_string($variations)) |
39 | 39 | $variations=\explode(" ", $variations); |
40 | - foreach ( $variations as $variation ) { |
|
40 | + foreach ($variations as $variation) { |
|
41 | 41 | $this->addVariation($variation); |
42 | 42 | } |
43 | 43 | return $this; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | public function addVariations($variations=array()) { |
52 | 52 | if (\is_string($variations)) |
53 | 53 | $variations=\explode(" ", $variations); |
54 | - foreach ( $variations as $variation ) { |
|
54 | + foreach ($variations as $variation) { |
|
55 | 55 | $this->addVariation($variation); |
56 | 56 | } |
57 | 57 | return $this; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function addStates($states=array()) { |
61 | 61 | if (\is_string($states)) |
62 | 62 | $states=\explode(" ", $states); |
63 | - foreach ( $states as $state ) { |
|
63 | + foreach ($states as $state) { |
|
64 | 64 | $this->addState($state); |
65 | 65 | } |
66 | 66 | return $this; |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | $this->setProperty("class", $this->_baseClass); |
71 | 71 | if (\is_string($states)) |
72 | 72 | $states=\explode(" ", $states); |
73 | - foreach ( $states as $state ) { |
|
73 | + foreach ($states as $state) { |
|
74 | 74 | $this->addState($state); |
75 | 75 | } |
76 | 76 | return $this; |
77 | 77 | } |
78 | 78 | |
79 | 79 | public function addIcon($icon, $before=true) { |
80 | - return $this->addContent(new HtmlIcon("icon-" . $this->identifier, $icon), $before); |
|
80 | + return $this->addContent(new HtmlIcon("icon-".$this->identifier, $icon), $before); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | public function setFloated($direction="right") { |
130 | - return $this->addToPropertyCtrl("class", $direction . " floated", Direction::getConstantValues("floated")); |
|
130 | + return $this->addToPropertyCtrl("class", $direction." floated", Direction::getConstantValues("floated")); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | public function floatRight() { |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | $output=$input; |
13 | 13 | } |
14 | 14 | if (is_array($input)) { |
15 | - if (sizeof($input) > 0) { |
|
16 | - if (self::containsElement($input) === false) { |
|
15 | + if (sizeof($input)>0) { |
|
16 | + if (self::containsElement($input)===false) { |
|
17 | 17 | $output=self::wrapStrings($input, $js, $separator=' ', $valueQuote='"'); |
18 | - } else { |
|
18 | + }else { |
|
19 | 19 | $output=self::wrapObjects($input, $js, $separator, $valueQuote); |
20 | 20 | } |
21 | 21 | } |
@@ -24,31 +24,31 @@ discard block |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | private static function containsElement($input) { |
27 | - foreach ( $input as $v ) { |
|
28 | - if (\is_object($v) === true || \is_array($v)) |
|
27 | + foreach ($input as $v) { |
|
28 | + if (\is_object($v)===true || \is_array($v)) |
|
29 | 29 | return true; |
30 | 30 | } |
31 | 31 | return false; |
32 | 32 | } |
33 | 33 | |
34 | 34 | public static function wrapStrings($input, $js, $separator=' ', $valueQuote='"') { |
35 | - if (JArray::isAssociative($input) === true) { |
|
36 | - $result=implode($separator, array_map(function ($v, $k) use($valueQuote) { |
|
37 | - return $k . '=' . $valueQuote . $v . $valueQuote; |
|
35 | + if (JArray::isAssociative($input)===true) { |
|
36 | + $result=implode($separator, array_map(function($v, $k) use($valueQuote) { |
|
37 | + return $k.'='.$valueQuote.$v.$valueQuote; |
|
38 | 38 | }, $input, array_keys($input))); |
39 | - } else { |
|
39 | + }else { |
|
40 | 40 | $result=implode($separator, array_values($input)); |
41 | 41 | } |
42 | 42 | return $result; |
43 | 43 | } |
44 | 44 | |
45 | 45 | public static function wrapObjects($input, $js=NULL, $separator=' ', $valueQuote='"') { |
46 | - return implode($separator, array_map(function ($v) use($js, $separator, $valueQuote) { |
|
46 | + return implode($separator, array_map(function($v) use($js, $separator, $valueQuote) { |
|
47 | 47 | if (is_object($v)) |
48 | 48 | return $v->compile($js); |
49 | 49 | elseif (\is_array($v)) { |
50 | 50 | return self::wrap($v, $js, $separator, $valueQuote); |
51 | - } else |
|
51 | + }else |
|
52 | 52 | return $v; |
53 | 53 | }, $input)); |
54 | 54 | } |
@@ -24,8 +24,8 @@ |
||
24 | 24 | use Ajax\semantic\traits\SemanticHtmlViewsTrait; |
25 | 25 | |
26 | 26 | class Semantic extends BaseGui { |
27 | - use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
|
28 | - SemanticHtmlModulesTrait,SemanticHtmlViewsTrait; |
|
27 | + use SemanticComponentsTrait, SemanticHtmlElementsTrait, SemanticHtmlCollectionsTrait, |
|
28 | + SemanticHtmlModulesTrait, SemanticHtmlViewsTrait; |
|
29 | 29 | |
30 | 30 | public function __construct($autoCompile=true) { |
31 | 31 | parent::__construct($autoCompile=true); |
@@ -21,13 +21,13 @@ |
||
21 | 21 | * @see \Ajax\bootstrap\html\base\HtmlSingleElement::run() |
22 | 22 | */ |
23 | 23 | public function run(JsUtils $js) { |
24 | - $this->_bsComponent=$js->semantic()->generic("#" . $this->identifier); |
|
24 | + $this->_bsComponent=$js->semantic()->generic("#".$this->identifier); |
|
25 | 25 | $this->addEventsOnRun($js); |
26 | 26 | return $this->_bsComponent; |
27 | 27 | } |
28 | 28 | |
29 | 29 | public function addIcon($icon, $before=true) { |
30 | - return $this->addContent(new HtmlIcon("icon-" . $this->identifier, $icon), $before); |
|
30 | + return $this->addContent(new HtmlIcon("icon-".$this->identifier, $icon), $before); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | public static function icon($identifier, $icon, $href="#", $label=NULL) { |