@@ -32,8 +32,9 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | public function setPopupAttributes($variation=NULL, $popupEvent=NULL) { |
35 | - if (isset($this->_popup)) |
|
36 | - $this->_popup->setAttributes($variation, $popupEvent); |
|
35 | + if (isset($this->_popup)) { |
|
36 | + $this->_popup->setAttributes($variation, $popupEvent); |
|
37 | + } |
|
37 | 38 | } |
38 | 39 | |
39 | 40 | public function addPopup($title="", $content="", $variation=NULL, $params=array()) { |
@@ -60,8 +61,9 @@ discard block |
||
60 | 61 | $labelO=$label; |
61 | 62 | if (\is_object($label) === false) { |
62 | 63 | $labelO=new HtmlLabel("label-" . $this->identifier, $label); |
63 | - if (isset($icon)) |
|
64 | - $labelO->addIcon($icon); |
|
64 | + if (isset($icon)) { |
|
65 | + $labelO->addIcon($icon); |
|
66 | + } |
|
65 | 67 | } else { |
66 | 68 | $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
67 | 69 | } |
@@ -80,21 +82,24 @@ discard block |
||
80 | 82 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
81 | 83 | */ |
82 | 84 | public function asLink($href=NULL) { |
83 | - if (isset($href)) |
|
84 | - $this->setProperty("href", $href); |
|
85 | + if (isset($href)) { |
|
86 | + $this->setProperty("href", $href); |
|
87 | + } |
|
85 | 88 | return $this->setTagName("a"); |
86 | 89 | } |
87 | 90 | |
88 | 91 | public function jsShowDimmer($show=true) { |
89 | 92 | $status="hide"; |
90 | - if ($show === true) |
|
91 | - $status="show"; |
|
93 | + if ($show === true) { |
|
94 | + $status="show"; |
|
95 | + } |
|
92 | 96 | return '$("#.' . $this->identifier . ').dimmer("' . $status . '");'; |
93 | 97 | } |
94 | 98 | |
95 | 99 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
96 | - if (isset($this->_popup)) |
|
97 | - $this->_popup->compile($js); |
|
100 | + if (isset($this->_popup)) { |
|
101 | + $this->_popup->compile($js); |
|
102 | + } |
|
98 | 103 | return parent::compile($js, $view); |
99 | 104 | } |
100 | 105 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | use BaseTrait; |
22 | 22 | protected $_popup=NULL; |
23 | 23 | protected $_dimmer=NULL; |
24 | - protected $_params=array (); |
|
24 | + protected $_params=array(); |
|
25 | 25 | |
26 | 26 | |
27 | 27 | public function __construct($identifier, $tagName="p", $baseClass="ui", $content=NULL) { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | public function addDimmer($params=array(), $content=NULL) { |
54 | - $dimmer=new HtmlDimmer("dimmer-" . $this->identifier, $content); |
|
54 | + $dimmer=new HtmlDimmer("dimmer-".$this->identifier, $content); |
|
55 | 55 | $dimmer->setParams($params); |
56 | 56 | $dimmer->setContainer($this); |
57 | 57 | $this->addContent($dimmer); |
@@ -60,20 +60,20 @@ discard block |
||
60 | 60 | |
61 | 61 | public function addLabel($label, $before=false, $icon=NULL) { |
62 | 62 | $labelO=$label; |
63 | - if (\is_object($label) === false) { |
|
64 | - $labelO=new HtmlLabel("label-" . $this->identifier, $label); |
|
63 | + if (\is_object($label)===false) { |
|
64 | + $labelO=new HtmlLabel("label-".$this->identifier, $label); |
|
65 | 65 | if (isset($icon)) |
66 | 66 | $labelO->addIcon($icon); |
67 | 67 | } else { |
68 | - $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
|
68 | + $labelO->addToPropertyCtrl("class", "label", array("label")); |
|
69 | 69 | } |
70 | 70 | $this->addContent($labelO, $before); |
71 | 71 | return $labelO; |
72 | 72 | } |
73 | 73 | |
74 | - public function attachLabel($label,$side,$direction=Direction::NONE,$icon=NULL){ |
|
75 | - $label=$this->addLabel($label,true,$icon); |
|
76 | - $label->setAttached($side,$direction); |
|
74 | + public function attachLabel($label, $side, $direction=Direction::NONE, $icon=NULL) { |
|
75 | + $label=$this->addLabel($label, true, $icon); |
|
76 | + $label->setAttached($side, $direction); |
|
77 | 77 | return $this; |
78 | 78 | } |
79 | 79 | |
@@ -89,9 +89,9 @@ discard block |
||
89 | 89 | |
90 | 90 | public function jsShowDimmer($show=true) { |
91 | 91 | $status="hide"; |
92 | - if ($show === true) |
|
92 | + if ($show===true) |
|
93 | 93 | $status="show"; |
94 | - return '$("#.' . $this->identifier . ').dimmer("' . $status . '");'; |
|
94 | + return '$("#.'.$this->identifier.').dimmer("'.$status.'");'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | public function run(JsUtils $js) { |
104 | - $this->_bsComponent=$js->semantic()->generic("#" . $this->identifier); |
|
104 | + $this->_bsComponent=$js->semantic()->generic("#".$this->identifier); |
|
105 | 105 | parent::run($js); |
106 | 106 | $this->addEventsOnRun($js); |
107 | 107 | if (isset($this->_popup)) { |
@@ -12,34 +12,34 @@ discard block |
||
12 | 12 | use Ajax\semantic\html\base\traits\MenuItemTrait; |
13 | 13 | |
14 | 14 | class HtmlDropdownItem extends HtmlSemDoubleElement { |
15 | - use IconTrait,MenuItemTrait; |
|
16 | - public function __construct($identifier, $content="",$value=NULL,$image=NULL,$description=NULL) { |
|
15 | + use IconTrait, MenuItemTrait; |
|
16 | + public function __construct($identifier, $content="", $value=NULL, $image=NULL, $description=NULL) { |
|
17 | 17 | parent::__construct($identifier, "a"); |
18 | 18 | $this->setClass("item"); |
19 | 19 | $this->setContent($content); |
20 | - if($value!==NULL) |
|
20 | + if ($value!==NULL) |
|
21 | 21 | $this->setData($value); |
22 | - if($image!==NULL) |
|
22 | + if ($image!==NULL) |
|
23 | 23 | $this->asMiniAvatar($image); |
24 | - if($description!==NULL) |
|
24 | + if ($description!==NULL) |
|
25 | 25 | $this->setDescription($description); |
26 | 26 | } |
27 | 27 | |
28 | - public function setDescription($description){ |
|
29 | - $descO=new HtmlDoubleElement("desc-".$this->identifier,"span"); |
|
28 | + public function setDescription($description) { |
|
29 | + $descO=new HtmlDoubleElement("desc-".$this->identifier, "span"); |
|
30 | 30 | $descO->setClass("description"); |
31 | 31 | $descO->setContent($description); |
32 | - return $this->addContent($descO,true); |
|
32 | + return $this->addContent($descO, true); |
|
33 | 33 | } |
34 | 34 | |
35 | - public function setData($value){ |
|
35 | + public function setData($value) { |
|
36 | 36 | $this->setProperty("data-value", $value); |
37 | 37 | return $this; |
38 | 38 | } |
39 | 39 | |
40 | - public function asOption(){ |
|
40 | + public function asOption() { |
|
41 | 41 | $this->tagName="option"; |
42 | - if($this->getProperty("data-value")!==null) |
|
42 | + if ($this->getProperty("data-value")!==null) |
|
43 | 43 | $this->setProperty("value", $this->getProperty("data-value")); |
44 | 44 | } |
45 | 45 | |
@@ -47,11 +47,11 @@ discard block |
||
47 | 47 | * @param string $image the image src |
48 | 48 | * @return \Ajax\common\html\html5\HtmlImg |
49 | 49 | */ |
50 | - public function asMiniAvatar($image){ |
|
50 | + public function asMiniAvatar($image) { |
|
51 | 51 | $this->tagName="div"; |
52 | - $img=new HtmlImg("image-".$this->identifier,$image); |
|
52 | + $img=new HtmlImg("image-".$this->identifier, $image); |
|
53 | 53 | $img->setClass("ui mini avatar image"); |
54 | - $this->addContent($img,true); |
|
54 | + $this->addContent($img, true); |
|
55 | 55 | return $this; |
56 | 56 | } |
57 | 57 | |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | * @param string $icon |
61 | 61 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
62 | 62 | */ |
63 | - public function asIcon($caption,$icon){ |
|
63 | + public function asIcon($caption, $icon) { |
|
64 | 64 | $this->setContent($caption); |
65 | - $this->addContent(new HtmlIcon("", $icon),true); |
|
65 | + $this->addContent(new HtmlIcon("", $icon), true); |
|
66 | 66 | return $this; |
67 | 67 | } |
68 | 68 | |
@@ -71,23 +71,23 @@ discard block |
||
71 | 71 | * @param string $color |
72 | 72 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
73 | 73 | */ |
74 | - public function asCircularLabel($caption,$color){ |
|
74 | + public function asCircularLabel($caption, $color) { |
|
75 | 75 | $this->setContent($caption); |
76 | 76 | $lbl=new HtmlLabel(""); |
77 | 77 | $lbl->setCircular()->setColor($color)->setEmpty(); |
78 | - $this->addContent($lbl,true); |
|
78 | + $this->addContent($lbl, true); |
|
79 | 79 | return $this; |
80 | 80 | } |
81 | 81 | |
82 | 82 | |
83 | 83 | |
84 | 84 | public function addMenuItem($items) { |
85 | - $menu=new HtmlMenu("menu-" . $this->identifier, $items); |
|
85 | + $menu=new HtmlMenu("menu-".$this->identifier, $items); |
|
86 | 86 | $content=$this->content; |
87 | 87 | $this->setTagName("div"); |
88 | 88 | $this->setProperty("class", "item"); |
89 | 89 | $icon=new HtmlIcon("", "dropdown"); |
90 | - $this->content=[$icon,new HtmlSemDoubleElement("","span","text",$content),$menu]; |
|
90 | + $this->content=[$icon, new HtmlSemDoubleElement("", "span", "text", $content), $menu]; |
|
91 | 91 | return $menu; |
92 | 92 | } |
93 | 93 | |
@@ -96,14 +96,14 @@ discard block |
||
96 | 96 | * @param string $icon |
97 | 97 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
98 | 98 | */ |
99 | - public static function searchInput($placeholder=NULL,$icon=NULL){ |
|
100 | - return (new HtmlDropdownItem(""))->asSearchInput($placeholder,$icon); |
|
99 | + public static function searchInput($placeholder=NULL, $icon=NULL) { |
|
100 | + return (new HtmlDropdownItem(""))->asSearchInput($placeholder, $icon); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
104 | 104 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
105 | 105 | */ |
106 | - public static function divider(){ |
|
106 | + public static function divider() { |
|
107 | 107 | return (new HtmlDropdownItem(""))->asDivider(); |
108 | 108 | } |
109 | 109 | |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | * @param string $icon |
113 | 113 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
114 | 114 | */ |
115 | - public static function header($caption=NULL,$icon=NULL){ |
|
116 | - return (new HtmlDropdownItem(""))->asHeader($caption,$icon); |
|
115 | + public static function header($caption=NULL, $icon=NULL) { |
|
116 | + return (new HtmlDropdownItem(""))->asHeader($caption, $icon); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | * @param string $color |
122 | 122 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
123 | 123 | */ |
124 | - public static function circular($caption,$color){ |
|
125 | - return (new HtmlDropdownItem(""))->asCircularLabel($caption,$color); |
|
124 | + public static function circular($caption, $color) { |
|
125 | + return (new HtmlDropdownItem(""))->asCircularLabel($caption, $color); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | * @param string $icon |
131 | 131 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
132 | 132 | */ |
133 | - public static function icon($caption,$icon){ |
|
134 | - return (new HtmlDropdownItem(""))->asIcon($caption,$icon); |
|
133 | + public static function icon($caption, $icon) { |
|
134 | + return (new HtmlDropdownItem(""))->asIcon($caption, $icon); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * @param unknown $image |
140 | 140 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
141 | 141 | */ |
142 | - public static function avatar($caption,$image){ |
|
143 | - return (new HtmlDropdownItem("",$caption))->asMiniAvatar($image); |
|
142 | + public static function avatar($caption, $image) { |
|
143 | + return (new HtmlDropdownItem("", $caption))->asMiniAvatar($image); |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 | \ No newline at end of file |
@@ -17,12 +17,15 @@ discard block |
||
17 | 17 | parent::__construct($identifier, "a"); |
18 | 18 | $this->setClass("item"); |
19 | 19 | $this->setContent($content); |
20 | - if($value!==NULL) |
|
21 | - $this->setData($value); |
|
22 | - if($image!==NULL) |
|
23 | - $this->asMiniAvatar($image); |
|
24 | - if($description!==NULL) |
|
25 | - $this->setDescription($description); |
|
20 | + if($value!==NULL) { |
|
21 | + $this->setData($value); |
|
22 | + } |
|
23 | + if($image!==NULL) { |
|
24 | + $this->asMiniAvatar($image); |
|
25 | + } |
|
26 | + if($description!==NULL) { |
|
27 | + $this->setDescription($description); |
|
28 | + } |
|
26 | 29 | } |
27 | 30 | |
28 | 31 | public function setDescription($description){ |
@@ -39,8 +42,9 @@ discard block |
||
39 | 42 | |
40 | 43 | public function asOption(){ |
41 | 44 | $this->tagName="option"; |
42 | - if($this->getProperty("data-value")!==null) |
|
43 | - $this->setProperty("value", $this->getProperty("data-value")); |
|
45 | + if($this->getProperty("data-value")!==null) { |
|
46 | + $this->setProperty("value", $this->getProperty("data-value")); |
|
47 | + } |
|
44 | 48 | } |
45 | 49 | |
46 | 50 | /** |
@@ -51,8 +51,9 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function getSideContent($index){ |
53 | 53 | $item= $this->getItem($index); |
54 | - if(isset($item)) |
|
55 | - return $item->getContent(); |
|
54 | + if(isset($item)) { |
|
55 | + return $item->getContent(); |
|
56 | + } |
|
56 | 57 | return null; |
57 | 58 | } |
58 | 59 | |
@@ -85,15 +86,17 @@ discard block |
||
85 | 86 | * @see BaseHtml::run() |
86 | 87 | */ |
87 | 88 | public function run(JsUtils $js) { |
88 | - if (isset($this->_bsComponent) === false) |
|
89 | - $this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params); |
|
89 | + if (isset($this->_bsComponent) === false) { |
|
90 | + $this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params); |
|
91 | + } |
|
90 | 92 | $this->addEventsOnRun($js); |
91 | 93 | return $this->_bsComponent; |
92 | 94 | } |
93 | 95 | |
94 | 96 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
95 | - if($this->_autoActive) |
|
96 | - $this->setActiveSide(0); |
|
97 | + if($this->_autoActive) { |
|
98 | + $this->setActiveSide(0); |
|
99 | + } |
|
97 | 100 | return parent::compile($js,$view); |
98 | 101 | } |
99 | 102 | } |
100 | 103 | \ No newline at end of file |
@@ -8,13 +8,13 @@ discard block |
||
8 | 8 | use Ajax\common\html\BaseHtml; |
9 | 9 | |
10 | 10 | |
11 | -class HtmlShape extends HtmlSemCollection{ |
|
11 | +class HtmlShape extends HtmlSemCollection { |
|
12 | 12 | |
13 | 13 | protected $_params=array(); |
14 | 14 | protected $_autoActive=true; |
15 | 15 | |
16 | - public function __construct( $identifier, $sides){ |
|
17 | - parent::__construct( $identifier, "div", "ui shape"); |
|
16 | + public function __construct($identifier, $sides) { |
|
17 | + parent::__construct($identifier, "div", "ui shape"); |
|
18 | 18 | $this->_template="<%tagName% id='%identifier%' %properties%><div class='sides'>%wrapContentBefore%%content%%wrapContentAfter%</div></%tagName%>"; |
19 | 19 | $this->addItems($sides); |
20 | 20 | } |
@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | * {@inheritDoc} |
24 | 24 | * @see \Ajax\common\html\HtmlCollection::createItem() |
25 | 25 | */ |
26 | - protected function createItem($value){ |
|
27 | - if(\is_object($value)===false){ |
|
28 | - $value=new HtmlSemDoubleElement("","div","content",$value); |
|
26 | + protected function createItem($value) { |
|
27 | + if (\is_object($value)===false) { |
|
28 | + $value=new HtmlSemDoubleElement("", "div", "content", $value); |
|
29 | 29 | } |
30 | 30 | return new HtmlShapeItem("side-".$this->identifier."-".$this->count(), $value); |
31 | 31 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * {@inheritDoc} |
35 | 35 | * @see \Ajax\common\html\HtmlCollection::createCondition() |
36 | 36 | */ |
37 | - protected function createCondition($value){ |
|
37 | + protected function createCondition($value) { |
|
38 | 38 | return ($value instanceof HtmlShapeItem)===false; |
39 | 39 | } |
40 | 40 | |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param int $index |
43 | 43 | * @return \Ajax\semantic\html\content\HtmlShapeItem |
44 | 44 | */ |
45 | - public function getSide($index){ |
|
45 | + public function getSide($index) { |
|
46 | 46 | return $this->getItem($index); |
47 | 47 | } |
48 | 48 | |
@@ -50,96 +50,96 @@ discard block |
||
50 | 50 | * @param int $index |
51 | 51 | * @return mixed|NULL |
52 | 52 | */ |
53 | - public function getSideContent($index){ |
|
54 | - $item= $this->getItem($index); |
|
55 | - if(isset($item)) |
|
53 | + public function getSideContent($index) { |
|
54 | + $item=$this->getItem($index); |
|
55 | + if (isset($item)) |
|
56 | 56 | return $item->getContent(); |
57 | 57 | return null; |
58 | 58 | } |
59 | 59 | |
60 | - public function jsDo($action){ |
|
60 | + public function jsDo($action) { |
|
61 | 61 | return "$('#".$this->identifier."').shape('".$action."');"; |
62 | 62 | } |
63 | 63 | |
64 | - public function jsFlipLeft(){ |
|
64 | + public function jsFlipLeft() { |
|
65 | 65 | return $this->jsDo("flip left"); |
66 | 66 | } |
67 | 67 | |
68 | - public function jsFlipRight(){ |
|
68 | + public function jsFlipRight() { |
|
69 | 69 | return $this->jsDo("flip right"); |
70 | 70 | } |
71 | 71 | |
72 | - public function jsFlipUp(){ |
|
72 | + public function jsFlipUp() { |
|
73 | 73 | return $this->jsDo("flip up"); |
74 | 74 | } |
75 | 75 | |
76 | - public function jsFlipDown(){ |
|
76 | + public function jsFlipDown() { |
|
77 | 77 | return $this->jsDo("flip down"); |
78 | 78 | } |
79 | 79 | |
80 | - public function jsFlipOver(){ |
|
80 | + public function jsFlipOver() { |
|
81 | 81 | return $this->jsDo("flip over"); |
82 | 82 | } |
83 | 83 | |
84 | - public function jsFlipBack(){ |
|
84 | + public function jsFlipBack() { |
|
85 | 85 | return $this->jsDo("flip back"); |
86 | 86 | } |
87 | 87 | |
88 | - private function doActionOn($element,$event,$what){ |
|
89 | - if($element instanceof BaseHtml){ |
|
90 | - return $element->on($event, $what,true,true); |
|
88 | + private function doActionOn($element, $event, $what) { |
|
89 | + if ($element instanceof BaseHtml) { |
|
90 | + return $element->on($event, $what, true, true); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | - public function flipLeftOn($element,$event){ |
|
94 | + public function flipLeftOn($element, $event) { |
|
95 | 95 | return $this->doActionOn($element, $event, $this->jsFlipLeft()); |
96 | 96 | } |
97 | 97 | |
98 | - public function flipRightOn($element,$event){ |
|
98 | + public function flipRightOn($element, $event) { |
|
99 | 99 | return $this->doActionOn($element, $event, $this->jsFlipRight()); |
100 | 100 | } |
101 | 101 | |
102 | - public function flipUpOn($element,$event){ |
|
102 | + public function flipUpOn($element, $event) { |
|
103 | 103 | return $this->doActionOn($element, $event, $this->jsFlipUp()); |
104 | 104 | } |
105 | 105 | |
106 | - public function flipDownOn($element,$event){ |
|
106 | + public function flipDownOn($element, $event) { |
|
107 | 107 | return $this->doActionOn($element, $event, $this->jsFlipDown()); |
108 | 108 | } |
109 | 109 | |
110 | - public function flipBackOn($element,$event){ |
|
110 | + public function flipBackOn($element, $event) { |
|
111 | 111 | return $this->doActionOn($element, $event, $this->jsFlipBack()); |
112 | 112 | } |
113 | 113 | |
114 | - public function flipOverOn($element,$event){ |
|
114 | + public function flipOverOn($element, $event) { |
|
115 | 115 | return $this->doActionOn($element, $event, $this->jsFlipOver()); |
116 | 116 | } |
117 | 117 | |
118 | - public function setActiveSide($index){ |
|
118 | + public function setActiveSide($index) { |
|
119 | 119 | $side=$this->getSide($index); |
120 | - if(isset($side)){ |
|
120 | + if (isset($side)) { |
|
121 | 121 | $side->setActive(true); |
122 | 122 | } |
123 | 123 | return $this; |
124 | 124 | } |
125 | 125 | |
126 | - public function asCube(){ |
|
126 | + public function asCube() { |
|
127 | 127 | return $this->addToPropertyCtrl("class", "cube", ["cube"]); |
128 | 128 | } |
129 | 129 | |
130 | - public function asText(){ |
|
130 | + public function asText() { |
|
131 | 131 | return $this->addToPropertyCtrl("class", "text", ["text"]); |
132 | 132 | } |
133 | 133 | |
134 | - public function setWidth($width="initial"){ |
|
134 | + public function setWidth($width="initial") { |
|
135 | 135 | $this->_params["width"]=$width; |
136 | 136 | } |
137 | - public function onChange($jsCode){ |
|
138 | - return $this->_params["onChange"]="%function(){" . $jsCode . "}%"; |
|
137 | + public function onChange($jsCode) { |
|
138 | + return $this->_params["onChange"]="%function(){".$jsCode."}%"; |
|
139 | 139 | } |
140 | 140 | |
141 | - public function beforeChange($jsCode){ |
|
142 | - return $this->_params["beforeChange"]="%function(){" . $jsCode . "}%"; |
|
141 | + public function beforeChange($jsCode) { |
|
142 | + return $this->_params["beforeChange"]="%function(){".$jsCode."}%"; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /* |
@@ -147,15 +147,15 @@ discard block |
||
147 | 147 | * @see BaseHtml::run() |
148 | 148 | */ |
149 | 149 | public function run(JsUtils $js) { |
150 | - if (isset($this->_bsComponent) === false) |
|
151 | - $this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params); |
|
150 | + if (isset($this->_bsComponent)===false) |
|
151 | + $this->_bsComponent=$js->semantic()->shape("#".$this->identifier, $this->_params); |
|
152 | 152 | $this->addEventsOnRun($js); |
153 | 153 | return $this->_bsComponent; |
154 | 154 | } |
155 | 155 | |
156 | 156 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
157 | - if($this->_autoActive) |
|
157 | + if ($this->_autoActive) |
|
158 | 158 | $this->setActiveSide(0); |
159 | - return parent::compile($js,$view); |
|
159 | + return parent::compile($js, $view); |
|
160 | 160 | } |
161 | 161 | } |
162 | 162 | \ No newline at end of file |
@@ -15,33 +15,33 @@ discard block |
||
15 | 15 | |
16 | 16 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
17 | 17 | parent::__construct($identifier, "div", "ui buttons"); |
18 | - if ($asIcons === true) |
|
18 | + if ($asIcons===true) |
|
19 | 19 | $this->asIcons(); |
20 | 20 | $this->addElements($elements, $asIcons); |
21 | 21 | } |
22 | - protected function createItem($value){ |
|
23 | - return new HtmlButton("button-" . $this->identifier . "-" . \sizeof($this->content), $value); |
|
22 | + protected function createItem($value) { |
|
23 | + return new HtmlButton("button-".$this->identifier."-".\sizeof($this->content), $value); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | |
27 | 27 | public function addElement($element, $asIcon=false) { |
28 | 28 | $item=$this->addItem($element); |
29 | - if($asIcon) |
|
29 | + if ($asIcon) |
|
30 | 30 | $item->asIcon($element); |
31 | 31 | return $item; |
32 | 32 | } |
33 | 33 | |
34 | 34 | public function addElements($elements, $asIcons=false) { |
35 | - foreach ( $elements as $element ) { |
|
35 | + foreach ($elements as $element) { |
|
36 | 36 | $this->addElement($element, $asIcons); |
37 | 37 | } |
38 | 38 | return $this; |
39 | 39 | } |
40 | 40 | |
41 | 41 | public function insertOr($aferIndex=0, $or="or") { |
42 | - $orElement=new HtmlSemDoubleElement("or-" . $this->identifier, "div", "or"); |
|
42 | + $orElement=new HtmlSemDoubleElement("or-".$this->identifier, "div", "or"); |
|
43 | 43 | $orElement->setProperty("data-text", $or); |
44 | - array_splice($this->content, $aferIndex + 1, 0, array ($orElement )); |
|
44 | + array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
|
45 | 45 | return $this; |
46 | 46 | } |
47 | 47 | |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | public function asIcons() { |
57 | - foreach ( $this->content as $item ) { |
|
58 | - if($item instanceof HtmlButton) |
|
57 | + foreach ($this->content as $item) { |
|
58 | + if ($item instanceof HtmlButton) |
|
59 | 59 | $item->asIcon($item->getContent()); |
60 | 60 | } |
61 | 61 | return $this->addToProperty("class", "icons"); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
89 | 89 | */ |
90 | 90 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
91 | - foreach ( $this->content as $element ) { |
|
91 | + foreach ($this->content as $element) { |
|
92 | 92 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
93 | 93 | } |
94 | 94 | return $this; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | public function addClasses($classes=array()) { |
102 | 102 | $i=0; |
103 | - foreach ( $this->content as $button ) { |
|
103 | + foreach ($this->content as $button) { |
|
104 | 104 | $button->addToProperty("class", $classes[$i++]); |
105 | 105 | } |
106 | 106 | return $this; |
@@ -15,8 +15,9 @@ discard block |
||
15 | 15 | |
16 | 16 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
17 | 17 | parent::__construct($identifier, "div", "ui buttons"); |
18 | - if ($asIcons === true) |
|
19 | - $this->asIcons(); |
|
18 | + if ($asIcons === true) { |
|
19 | + $this->asIcons(); |
|
20 | + } |
|
20 | 21 | $this->addElements($elements, $asIcons); |
21 | 22 | } |
22 | 23 | protected function createItem($value){ |
@@ -26,8 +27,9 @@ discard block |
||
26 | 27 | |
27 | 28 | public function addElement($element, $asIcon=false) { |
28 | 29 | $item=$this->addItem($element); |
29 | - if($asIcon) |
|
30 | - $item->asIcon($element); |
|
30 | + if($asIcon) { |
|
31 | + $item->asIcon($element); |
|
32 | + } |
|
31 | 33 | return $item; |
32 | 34 | } |
33 | 35 | |
@@ -55,8 +57,9 @@ discard block |
||
55 | 57 | |
56 | 58 | public function asIcons() { |
57 | 59 | foreach ( $this->content as $item ) { |
58 | - if($item instanceof HtmlButton) |
|
59 | - $item->asIcon($item->getContent()); |
|
60 | + if($item instanceof HtmlButton) { |
|
61 | + $item->asIcon($item->getContent()); |
|
62 | + } |
|
60 | 63 | } |
61 | 64 | return $this->addToProperty("class", "icons"); |
62 | 65 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @return \Ajax\semantic\html\elements\HtmlDivider |
23 | 23 | */ |
24 | 24 | public function setVertical() { |
25 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical","horizontal" )); |
|
25 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical", "horizontal")); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @return \Ajax\semantic\html\elements\HtmlDivider |
31 | 31 | */ |
32 | 32 | public function setHorizontal() { |
33 | - return $this->addToPropertyCtrl("class", "horizontal", array ("vertical","horizontal" )); |
|
33 | + return $this->addToPropertyCtrl("class", "horizontal", array("vertical", "horizontal")); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | return $this->addToProperty("class", "inverted"); |
66 | 66 | } |
67 | 67 | |
68 | - public function setIgnored(){ |
|
68 | + public function setIgnored() { |
|
69 | 69 | return $this->addToProperty("class", "ignored"); |
70 | 70 | } |
71 | 71 | } |
72 | 72 | \ No newline at end of file |
@@ -5,13 +5,13 @@ |
||
5 | 5 | |
6 | 6 | class HtmlShapeItem extends HtmlSemDoubleElement { |
7 | 7 | public function __construct($identifier, $content) { |
8 | - parent::__construct($identifier,"div","side",$content); |
|
8 | + parent::__construct($identifier, "div", "side", $content); |
|
9 | 9 | } |
10 | 10 | |
11 | - public function setActive($value=true){ |
|
12 | - if($value){ |
|
11 | + public function setActive($value=true) { |
|
12 | + if ($value) { |
|
13 | 13 | $this->addToPropertyCtrl("class", "active", ["active"]); |
14 | - }else{ |
|
14 | + } else { |
|
15 | 15 | $this->removePropertyValue("class", "active"); |
16 | 16 | } |
17 | 17 | return $this; |
@@ -13,7 +13,7 @@ |
||
13 | 13 | $viewVars=$view->viewVars; |
14 | 14 | if (isset($viewVars["q"]) === false) { |
15 | 15 | $controls=array (); |
16 | - }else{ |
|
16 | + } else{ |
|
17 | 17 | $controls=$viewVars["q"]; |
18 | 18 | } |
19 | 19 | $controls[$identifier]=$content; |
@@ -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); |
@@ -20,15 +20,15 @@ discard block |
||
20 | 20 | $this->params["fields"]=[]; |
21 | 21 | } |
22 | 22 | |
23 | - public function addField($identifier){ |
|
23 | + public function addField($identifier) { |
|
24 | 24 | $this->params["fields"][$identifier]=new FieldValidation($identifier); |
25 | 25 | } |
26 | 26 | |
27 | - public function setInline($value){ |
|
27 | + public function setInline($value) { |
|
28 | 28 | return $this->setParam("inline", true); |
29 | 29 | } |
30 | 30 | |
31 | - public function setOn($value){ |
|
31 | + public function setOn($value) { |
|
32 | 32 | return $this->setParam("on", $value); |
33 | 33 | } |
34 | 34 | |
@@ -40,33 +40,33 @@ discard block |
||
40 | 40 | * @param mixed $value |
41 | 41 | * @param string|NULL $prompt |
42 | 42 | */ |
43 | - public function addFieldRule($identifier,$type,$prompt=NULL,$value=NULL){ |
|
44 | - if(isset($this->params["fields"][$identifier])===false){ |
|
43 | + public function addFieldRule($identifier, $type, $prompt=NULL, $value=NULL) { |
|
44 | + if (isset($this->params["fields"][$identifier])===false) { |
|
45 | 45 | $this->addField($identifier); |
46 | 46 | } |
47 | - $this->params["fields"][$identifier]->addRule($type,$prompt,$value); |
|
47 | + $this->params["fields"][$identifier]->addRule($type, $prompt, $value); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @param FieldValidation $fieldValidation |
52 | 52 | */ |
53 | - public function addFieldValidation($fieldValidation){ |
|
53 | + public function addFieldValidation($fieldValidation) { |
|
54 | 54 | $this->params["fields"][$fieldValidation->getIdentifier()]=$fieldValidation; |
55 | 55 | } |
56 | 56 | |
57 | - public function setJs(JsUtils $js){ |
|
57 | + public function setJs(JsUtils $js) { |
|
58 | 58 | $this->js=$js; |
59 | 59 | } |
60 | 60 | |
61 | 61 | public function getScript() { |
62 | 62 | $allParams=$this->params; |
63 | - $this->jquery_code_for_compile=array (); |
|
63 | + $this->jquery_code_for_compile=array(); |
|
64 | 64 | $this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).{$this->uiName}(".$this->getParamsAsJSON($allParams).");"; |
65 | 65 | $this->compileEvents(); |
66 | 66 | return $this->compileJQueryCode(); |
67 | 67 | } |
68 | 68 | |
69 | - public function onValid($jsCode){ |
|
69 | + public function onValid($jsCode) { |
|
70 | 70 | $this->addComponentEvent("onValid", $jsCode); |
71 | 71 | } |
72 | 72 | } |
73 | 73 | \ No newline at end of file |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | abstract class BaseHtml extends BaseWidget { |
17 | 17 | protected $_template; |
18 | 18 | protected $tagName; |
19 | - protected $properties=array (); |
|
20 | - protected $_events=array (); |
|
21 | - protected $_wrapBefore=array (); |
|
22 | - protected $_wrapAfter=array (); |
|
19 | + protected $properties=array(); |
|
20 | + protected $_events=array(); |
|
21 | + protected $_wrapBefore=array(); |
|
22 | + protected $_wrapAfter=array(); |
|
23 | 23 | protected $_bsComponent; |
24 | 24 | |
25 | 25 | public function getBsComponent() { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | protected function getTemplate(JsUtils $js=NULL) { |
35 | - return PropertyWrapper::wrap($this->_wrapBefore, $js) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
35 | + return PropertyWrapper::wrap($this->_wrapBefore, $js).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function getProperties() { |
@@ -56,13 +56,13 @@ discard block |
||
56 | 56 | |
57 | 57 | public function addToProperty($name, $value, $separator=" ") { |
58 | 58 | if (\is_array($value)) { |
59 | - foreach ( $value as $v ) { |
|
59 | + foreach ($value as $v) { |
|
60 | 60 | $this->addToProperty($name, $v, $separator); |
61 | 61 | } |
62 | - } else if ($value !== "" && $this->propertyContains($name, $value) === false) { |
|
62 | + } else if ($value!=="" && $this->propertyContains($name, $value)===false) { |
|
63 | 63 | $v=@$this->properties[$name]; |
64 | - if (isset($v) && $v !== "") |
|
65 | - $v=$v . $separator . $value; |
|
64 | + if (isset($v) && $v!=="") |
|
65 | + $v=$v.$separator.$value; |
|
66 | 66 | else |
67 | 67 | $v=$value; |
68 | 68 | |
@@ -78,19 +78,19 @@ discard block |
||
78 | 78 | |
79 | 79 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
80 | 80 | $result=$this->getTemplate($js); |
81 | - foreach ( $this as $key => $value ) { |
|
82 | - if (JString::startswith($key, "_") === false && $key !== "events") { |
|
81 | + foreach ($this as $key => $value) { |
|
82 | + if (JString::startswith($key, "_")===false && $key!=="events") { |
|
83 | 83 | if (is_array($value)) { |
84 | 84 | $v=PropertyWrapper::wrap($value, $js); |
85 | 85 | } else { |
86 | 86 | $v=$value; |
87 | 87 | } |
88 | - $result=str_ireplace("%" . $key . "%", $v, $result); |
|
88 | + $result=str_ireplace("%".$key."%", $v, $result); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | if (isset($js)===true) { |
92 | 92 | $this->run($js); |
93 | - if (isset($view) === true) { |
|
93 | + if (isset($view)===true) { |
|
94 | 94 | $js->addViewElement($this->identifier, $result, $view); |
95 | 95 | } |
96 | 96 | } |
@@ -99,12 +99,12 @@ discard block |
||
99 | 99 | |
100 | 100 | protected function ctrl($name, $value, $typeCtrl) { |
101 | 101 | if (is_array($typeCtrl)) { |
102 | - if (array_search($value, $typeCtrl) === false) { |
|
103 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
102 | + if (array_search($value, $typeCtrl)===false) { |
|
103 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
104 | 104 | } |
105 | 105 | } else { |
106 | 106 | if (!$typeCtrl($value)) { |
107 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
107 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | return true; |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | } |
120 | 120 | |
121 | 121 | protected function setPropertyCtrl($name, $value, $typeCtrl) { |
122 | - if ($this->ctrl($name, $value, $typeCtrl) === true) |
|
122 | + if ($this->ctrl($name, $value, $typeCtrl)===true) |
|
123 | 123 | return $this->setProperty($name, $value); |
124 | 124 | return $this; |
125 | 125 | } |
126 | 126 | |
127 | 127 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
128 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
128 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
129 | 129 | return $name=$value; |
130 | 130 | } |
131 | 131 | return $this; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | protected function addToMemberUnique(&$name, $value, $typeCtrl, $separator=" ") { |
135 | 135 | if (is_array($typeCtrl)) { |
136 | 136 | $this->removeOldValues($name, $typeCtrl); |
137 | - $name.=$separator . $value; |
|
137 | + $name.=$separator.$value; |
|
138 | 138 | } |
139 | 139 | return $this; |
140 | 140 | } |
@@ -156,17 +156,17 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
159 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
159 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
160 | 160 | if (is_array($typeCtrl)) { |
161 | 161 | $this->removeOldValues($name, $typeCtrl); |
162 | 162 | } |
163 | - $name.=$separator . $value; |
|
163 | + $name.=$separator.$value; |
|
164 | 164 | } |
165 | 165 | return $this; |
166 | 166 | } |
167 | 167 | |
168 | 168 | protected function addToMember(&$name, $value, $separator=" ") { |
169 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
169 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
170 | 170 | return $this; |
171 | 171 | } |
172 | 172 | |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | } |
185 | 185 | |
186 | 186 | public function addToPropertyCtrlCheck($name, $value, $typeCtrl) { |
187 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
187 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
188 | 188 | return $this->addToProperty($name, $value); |
189 | 189 | } |
190 | 190 | return $this; |
@@ -212,28 +212,28 @@ discard block |
||
212 | 212 | } |
213 | 213 | |
214 | 214 | public function fromArray($array) { |
215 | - foreach ( $this as $key => $value ) { |
|
215 | + foreach ($this as $key => $value) { |
|
216 | 216 | if (array_key_exists($key, $array) && !JString::startswith($key, "_")) { |
217 | - $setter="set" . ucfirst($key); |
|
217 | + $setter="set".ucfirst($key); |
|
218 | 218 | $this->$setter($array[$key]); |
219 | 219 | unset($array[$key]); |
220 | 220 | } |
221 | 221 | } |
222 | - foreach ( $array as $key => $value ) { |
|
222 | + foreach ($array as $key => $value) { |
|
223 | 223 | if (method_exists($this, $key)) { |
224 | 224 | try { |
225 | 225 | $this->$key($value); |
226 | 226 | unset($array[$key]); |
227 | - } catch ( \Exception $e ) { |
|
227 | + }catch (\Exception $e) { |
|
228 | 228 | // Nothing to do |
229 | 229 | } |
230 | 230 | } else { |
231 | - $setter="set" . ucfirst($key); |
|
231 | + $setter="set".ucfirst($key); |
|
232 | 232 | if (method_exists($this, $setter)) { |
233 | 233 | try { |
234 | 234 | $this->$setter($value); |
235 | 235 | unset($array[$key]); |
236 | - } catch ( \Exception $e ) { |
|
236 | + }catch (\Exception $e) { |
|
237 | 237 | // Nothing to do |
238 | 238 | } |
239 | 239 | } |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | |
245 | 245 | public function fromDatabaseObjects($objects, $function) { |
246 | 246 | if (isset($objects)) { |
247 | - foreach ( $objects as $object ) { |
|
247 | + foreach ($objects as $object) { |
|
248 | 248 | $this->fromDatabaseObject($object, $function); |
249 | 249 | } |
250 | 250 | } |
@@ -264,11 +264,11 @@ discard block |
||
264 | 264 | } |
265 | 265 | |
266 | 266 | public function addEvent($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
267 | - if ($stopPropagation === true) { |
|
268 | - $jsCode="event.stopPropagation();" . $jsCode; |
|
267 | + if ($stopPropagation===true) { |
|
268 | + $jsCode="event.stopPropagation();".$jsCode; |
|
269 | 269 | } |
270 | - if ($preventDefault === true) { |
|
271 | - $jsCode="event.preventDefault();" . $jsCode; |
|
270 | + if ($preventDefault===true) { |
|
271 | + $jsCode="event.preventDefault();".$jsCode; |
|
272 | 272 | } |
273 | 273 | return $this->_addEvent($event, $jsCode); |
274 | 274 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | if (is_array($this->_events[$event])) { |
279 | 279 | $this->_events[$event][]=$jsCode; |
280 | 280 | } else { |
281 | - $this->_events[$event]=array ($this->_events[$event],$jsCode ); |
|
281 | + $this->_events[$event]=array($this->_events[$event], $jsCode); |
|
282 | 282 | } |
283 | 283 | } else { |
284 | 284 | $this->_events[$event]=$jsCode; |
@@ -298,35 +298,35 @@ discard block |
||
298 | 298 | return $this->onClick($jsCode); |
299 | 299 | } |
300 | 300 | |
301 | - public function onCreate($jsCode){ |
|
302 | - if(isset($this->_events["_create"])){ |
|
301 | + public function onCreate($jsCode) { |
|
302 | + if (isset($this->_events["_create"])) { |
|
303 | 303 | $this->_events["_create"][]=$jsCode; |
304 | - }else{ |
|
304 | + } else { |
|
305 | 305 | $this->_events["_create"]=[$jsCode]; |
306 | 306 | } |
307 | 307 | return $this; |
308 | 308 | } |
309 | 309 | |
310 | 310 | public function addEventsOnRun(JsUtils $js) { |
311 | - if(isset($this->_events["_create"])){ |
|
311 | + if (isset($this->_events["_create"])) { |
|
312 | 312 | $create=$this->_events["_create"]; |
313 | - if(\is_array($create)){ |
|
313 | + if (\is_array($create)) { |
|
314 | 314 | $create=\implode("", $create); |
315 | 315 | } |
316 | - if($create!=="") |
|
317 | - $js->exec($create,true); |
|
316 | + if ($create!=="") |
|
317 | + $js->exec($create, true); |
|
318 | 318 | unset($this->_events["_create"]); |
319 | 319 | } |
320 | 320 | if (isset($this->_bsComponent)) { |
321 | - foreach ( $this->_events as $event => $jsCode ) { |
|
321 | + foreach ($this->_events as $event => $jsCode) { |
|
322 | 322 | $code=$jsCode; |
323 | 323 | if (is_array($jsCode)) { |
324 | 324 | $code=""; |
325 | - foreach ( $jsCode as $jsC ) { |
|
325 | + foreach ($jsCode as $jsC) { |
|
326 | 326 | if ($jsC instanceof AjaxCall) { |
327 | - $code.="\n" . $jsC->compile($js); |
|
327 | + $code.="\n".$jsC->compile($js); |
|
328 | 328 | } else { |
329 | - $code.="\n" . $jsC; |
|
329 | + $code.="\n".$jsC; |
|
330 | 330 | } |
331 | 331 | } |
332 | 332 | } elseif ($jsCode instanceof AjaxCall) { |
@@ -334,12 +334,12 @@ discard block |
||
334 | 334 | } |
335 | 335 | $this->_bsComponent->addEvent($event, $code); |
336 | 336 | } |
337 | - $this->_events=array (); |
|
337 | + $this->_events=array(); |
|
338 | 338 | } |
339 | 339 | } |
340 | 340 | |
341 | 341 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
342 | - $params=array ("url" => $url,"responseElement" => $responseElement ); |
|
342 | + $params=array("url" => $url, "responseElement" => $responseElement); |
|
343 | 343 | $params=array_merge($params, $parameters); |
344 | 344 | $this->_addEvent($event, new AjaxCall($operation, $params)); |
345 | 345 | return $this; |
@@ -375,33 +375,33 @@ discard block |
||
375 | 375 | if (is_array($elements)) { |
376 | 376 | $flag=false; |
377 | 377 | $index=0; |
378 | - while ( !$flag && $index < sizeof($elements) ) { |
|
378 | + while (!$flag && $index<sizeof($elements)) { |
|
379 | 379 | if ($elements[$index] instanceof BaseHtml) |
380 | - $flag=($elements[$index]->getIdentifier() === $identifier); |
|
380 | + $flag=($elements[$index]->getIdentifier()===$identifier); |
|
381 | 381 | $index++; |
382 | 382 | } |
383 | - if ($flag === true) |
|
384 | - return $elements[$index - 1]; |
|
383 | + if ($flag===true) |
|
384 | + return $elements[$index-1]; |
|
385 | 385 | } elseif ($elements instanceof BaseHtml) { |
386 | - if ($elements->getIdentifier() === $identifier) |
|
386 | + if ($elements->getIdentifier()===$identifier) |
|
387 | 387 | return $elements; |
388 | 388 | } |
389 | 389 | return null; |
390 | 390 | } |
391 | 391 | |
392 | - protected function getElementByPropertyValue($propertyName,$value, $elements) { |
|
392 | + protected function getElementByPropertyValue($propertyName, $value, $elements) { |
|
393 | 393 | if (is_array($elements)) { |
394 | 394 | $flag=false; |
395 | 395 | $index=0; |
396 | - while ( !$flag && $index < sizeof($elements) ) { |
|
396 | + while (!$flag && $index<sizeof($elements)) { |
|
397 | 397 | if ($elements[$index] instanceof BaseHtml) |
398 | - $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
398 | + $flag=($elements[$index]->propertyContains($propertyName, $value)===true); |
|
399 | 399 | $index++; |
400 | 400 | } |
401 | - if ($flag === true) |
|
402 | - return $elements[$index - 1]; |
|
401 | + if ($flag===true) |
|
402 | + return $elements[$index-1]; |
|
403 | 403 | } elseif ($elements instanceof BaseHtml) { |
404 | - if ($elements->propertyContains($propertyName, $value) === true) |
|
404 | + if ($elements->propertyContains($propertyName, $value)===true) |
|
405 | 405 | return $elements; |
406 | 406 | } |
407 | 407 | return null; |
@@ -423,14 +423,14 @@ discard block |
||
423 | 423 | if (is_array($value)) { |
424 | 424 | $value=implode(",", $value); |
425 | 425 | } |
426 | - if (strrpos($value, 'this') === false && strrpos($value, 'event') === false) { |
|
427 | - $value='"' . $value . '"'; |
|
426 | + if (strrpos($value, 'this')===false && strrpos($value, 'event')===false) { |
|
427 | + $value='"'.$value.'"'; |
|
428 | 428 | } |
429 | 429 | return $value; |
430 | 430 | } |
431 | 431 | |
432 | 432 | public function jsDoJquery($jqueryCall, $param="") { |
433 | - return "$('#" . $this->identifier . "')." . $jqueryCall . "(" . $this->_prep_value($param) . ");"; |
|
433 | + return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");"; |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | public function executeOnRun($jsCode) { |
@@ -50,8 +50,9 @@ discard block |
||
50 | 50 | } |
51 | 51 | |
52 | 52 | public function getProperty($name) { |
53 | - if (array_key_exists($name, $this->properties)) |
|
54 | - return $this->properties[$name]; |
|
53 | + if (array_key_exists($name, $this->properties)) { |
|
54 | + return $this->properties[$name]; |
|
55 | + } |
|
55 | 56 | } |
56 | 57 | |
57 | 58 | public function addToProperty($name, $value, $separator=" ") { |
@@ -61,10 +62,11 @@ discard block |
||
61 | 62 | } |
62 | 63 | } else if ($value !== "" && $this->propertyContains($name, $value) === false) { |
63 | 64 | $v=@$this->properties[$name]; |
64 | - if (isset($v) && $v !== "") |
|
65 | - $v=$v . $separator . $value; |
|
66 | - else |
|
67 | - $v=$value; |
|
65 | + if (isset($v) && $v !== "") { |
|
66 | + $v=$v . $separator . $value; |
|
67 | + } else { |
|
68 | + $v=$value; |
|
69 | + } |
|
68 | 70 | |
69 | 71 | return $this->setProperty($name, $v); |
70 | 72 | } |
@@ -119,8 +121,9 @@ discard block |
||
119 | 121 | } |
120 | 122 | |
121 | 123 | protected function setPropertyCtrl($name, $value, $typeCtrl) { |
122 | - if ($this->ctrl($name, $value, $typeCtrl) === true) |
|
123 | - return $this->setProperty($name, $value); |
|
124 | + if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
125 | + return $this->setProperty($name, $value); |
|
126 | + } |
|
124 | 127 | return $this; |
125 | 128 | } |
126 | 129 | |
@@ -150,8 +153,9 @@ discard block |
||
150 | 153 | } |
151 | 154 | |
152 | 155 | public function removeProperty($name) { |
153 | - if (\array_key_exists($name, $this->properties)) |
|
154 | - unset($this->properties[$name]); |
|
156 | + if (\array_key_exists($name, $this->properties)) { |
|
157 | + unset($this->properties[$name]); |
|
158 | + } |
|
155 | 159 | return $this; |
156 | 160 | } |
157 | 161 | |
@@ -171,8 +175,9 @@ discard block |
||
171 | 175 | } |
172 | 176 | |
173 | 177 | protected function addToPropertyUnique($name, $value, $typeCtrl) { |
174 | - if (@class_exists($typeCtrl, true)) |
|
175 | - $typeCtrl=$typeCtrl::getConstants(); |
|
178 | + if (@class_exists($typeCtrl, true)) { |
|
179 | + $typeCtrl=$typeCtrl::getConstants(); |
|
180 | + } |
|
176 | 181 | if (is_array($typeCtrl)) { |
177 | 182 | $this->removeOldValues($this->properties[$name], $typeCtrl); |
178 | 183 | } |
@@ -301,7 +306,7 @@ discard block |
||
301 | 306 | public function onCreate($jsCode){ |
302 | 307 | if(isset($this->_events["_create"])){ |
303 | 308 | $this->_events["_create"][]=$jsCode; |
304 | - }else{ |
|
309 | + } else{ |
|
305 | 310 | $this->_events["_create"]=[$jsCode]; |
306 | 311 | } |
307 | 312 | return $this; |
@@ -313,8 +318,9 @@ discard block |
||
313 | 318 | if(\is_array($create)){ |
314 | 319 | $create=\implode("", $create); |
315 | 320 | } |
316 | - if($create!=="") |
|
317 | - $js->exec($create,true); |
|
321 | + if($create!=="") { |
|
322 | + $js->exec($create,true); |
|
323 | + } |
|
318 | 324 | unset($this->_events["_create"]); |
319 | 325 | } |
320 | 326 | if (isset($this->_bsComponent)) { |
@@ -376,15 +382,18 @@ discard block |
||
376 | 382 | $flag=false; |
377 | 383 | $index=0; |
378 | 384 | while ( !$flag && $index < sizeof($elements) ) { |
379 | - if ($elements[$index] instanceof BaseHtml) |
|
380 | - $flag=($elements[$index]->getIdentifier() === $identifier); |
|
385 | + if ($elements[$index] instanceof BaseHtml) { |
|
386 | + $flag=($elements[$index]->getIdentifier() === $identifier); |
|
387 | + } |
|
381 | 388 | $index++; |
382 | 389 | } |
383 | - if ($flag === true) |
|
384 | - return $elements[$index - 1]; |
|
390 | + if ($flag === true) { |
|
391 | + return $elements[$index - 1]; |
|
392 | + } |
|
385 | 393 | } elseif ($elements instanceof BaseHtml) { |
386 | - if ($elements->getIdentifier() === $identifier) |
|
387 | - return $elements; |
|
394 | + if ($elements->getIdentifier() === $identifier) { |
|
395 | + return $elements; |
|
396 | + } |
|
388 | 397 | } |
389 | 398 | return null; |
390 | 399 | } |
@@ -394,15 +403,18 @@ discard block |
||
394 | 403 | $flag=false; |
395 | 404 | $index=0; |
396 | 405 | while ( !$flag && $index < sizeof($elements) ) { |
397 | - if ($elements[$index] instanceof BaseHtml) |
|
398 | - $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
406 | + if ($elements[$index] instanceof BaseHtml) { |
|
407 | + $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
408 | + } |
|
399 | 409 | $index++; |
400 | 410 | } |
401 | - if ($flag === true) |
|
402 | - return $elements[$index - 1]; |
|
411 | + if ($flag === true) { |
|
412 | + return $elements[$index - 1]; |
|
413 | + } |
|
403 | 414 | } elseif ($elements instanceof BaseHtml) { |
404 | - if ($elements->propertyContains($propertyName, $value) === true) |
|
405 | - return $elements; |
|
415 | + if ($elements->propertyContains($propertyName, $value) === true) { |
|
416 | + return $elements; |
|
417 | + } |
|
406 | 418 | } |
407 | 419 | return null; |
408 | 420 | } |
@@ -124,6 +124,10 @@ discard block |
||
124 | 124 | return $this; |
125 | 125 | } |
126 | 126 | |
127 | + /** |
|
128 | + * @param string $name |
|
129 | + * @param string[] $typeCtrl |
|
130 | + */ |
|
127 | 131 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
128 | 132 | if ($this->ctrl($name, $value, $typeCtrl) === true) { |
129 | 133 | return $name=$value; |
@@ -139,22 +143,35 @@ discard block |
||
139 | 143 | return $this; |
140 | 144 | } |
141 | 145 | |
146 | + /** |
|
147 | + * @param string $name |
|
148 | + */ |
|
142 | 149 | protected function removePropertyValue($name, $value) { |
143 | 150 | $this->properties[$name]=\str_replace($value, "", $this->properties[$name]); |
144 | 151 | return $this; |
145 | 152 | } |
146 | 153 | |
154 | + /** |
|
155 | + * @param string $name |
|
156 | + */ |
|
147 | 157 | protected function removePropertyValues($name, $values) { |
148 | 158 | $this->removeOldValues($this->properties[$name], $values); |
149 | 159 | return $this; |
150 | 160 | } |
151 | 161 | |
162 | + /** |
|
163 | + * @param string $name |
|
164 | + */ |
|
152 | 165 | public function removeProperty($name) { |
153 | 166 | if (\array_key_exists($name, $this->properties)) |
154 | 167 | unset($this->properties[$name]); |
155 | 168 | return $this; |
156 | 169 | } |
157 | 170 | |
171 | + /** |
|
172 | + * @param string $name |
|
173 | + * @param string[] $typeCtrl |
|
174 | + */ |
|
158 | 175 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
159 | 176 | if ($this->ctrl($name, $value, $typeCtrl) === true) { |
160 | 177 | if (is_array($typeCtrl)) { |
@@ -165,6 +182,9 @@ discard block |
||
165 | 182 | return $this; |
166 | 183 | } |
167 | 184 | |
185 | + /** |
|
186 | + * @param string $name |
|
187 | + */ |
|
168 | 188 | protected function addToMember(&$name, $value, $separator=" ") { |
169 | 189 | $name=str_ireplace($value, "", $name) . $separator . $value; |
170 | 190 | return $this; |
@@ -179,6 +199,9 @@ discard block |
||
179 | 199 | return $this->addToProperty($name, $value); |
180 | 200 | } |
181 | 201 | |
202 | + /** |
|
203 | + * @param string $name |
|
204 | + */ |
|
182 | 205 | public function addToPropertyCtrl($name, $value, $typeCtrl) { |
183 | 206 | return $this->addToPropertyUnique($name, $value, $typeCtrl); |
184 | 207 | } |
@@ -242,6 +265,9 @@ discard block |
||
242 | 265 | return $array; |
243 | 266 | } |
244 | 267 | |
268 | + /** |
|
269 | + * @param \Closure $function |
|
270 | + */ |
|
245 | 271 | public function fromDatabaseObjects($objects, $function) { |
246 | 272 | if (isset($objects)) { |
247 | 273 | foreach ( $objects as $object ) { |
@@ -345,14 +371,23 @@ discard block |
||
345 | 371 | return $this; |
346 | 372 | } |
347 | 373 | |
374 | + /** |
|
375 | + * @param string $event |
|
376 | + */ |
|
348 | 377 | public function getOn($event, $url, $responseElement="", $parameters=array()) { |
349 | 378 | return $this->_ajaxOn("get", $event, $url, $responseElement, $parameters); |
350 | 379 | } |
351 | 380 | |
381 | + /** |
|
382 | + * @param string $url |
|
383 | + */ |
|
352 | 384 | public function getOnClick($url, $responseElement="", $parameters=array()) { |
353 | 385 | return $this->getOn("click", $url, $responseElement, $parameters); |
354 | 386 | } |
355 | 387 | |
388 | + /** |
|
389 | + * @param string $event |
|
390 | + */ |
|
356 | 391 | public function postOn($event, $url, $params="{}", $responseElement="", $parameters=array()) { |
357 | 392 | $parameters["params"]=$params; |
358 | 393 | return $this->_ajaxOn("post", $event, $url, $responseElement, $parameters); |
@@ -362,6 +397,9 @@ discard block |
||
362 | 397 | return $this->postOn("click", $url, $params, $responseElement, $parameters); |
363 | 398 | } |
364 | 399 | |
400 | + /** |
|
401 | + * @param string $event |
|
402 | + */ |
|
365 | 403 | public function postFormOn($event, $url, $form, $responseElement="", $parameters=array()) { |
366 | 404 | $parameters["form"]=$form; |
367 | 405 | return $this->_ajaxOn("postForm", $event, $url, $responseElement, $parameters); |
@@ -389,6 +427,10 @@ discard block |
||
389 | 427 | return null; |
390 | 428 | } |
391 | 429 | |
430 | + /** |
|
431 | + * @param string $propertyName |
|
432 | + * @param string $value |
|
433 | + */ |
|
392 | 434 | protected function getElementByPropertyValue($propertyName,$value, $elements) { |
393 | 435 | if (is_array($elements)) { |
394 | 436 | $flag=false; |
@@ -429,6 +471,9 @@ discard block |
||
429 | 471 | return $value; |
430 | 472 | } |
431 | 473 | |
474 | + /** |
|
475 | + * @param string $jqueryCall |
|
476 | + */ |
|
432 | 477 | public function jsDoJquery($jqueryCall, $param="") { |
433 | 478 | return "$('#" . $this->identifier . "')." . $jqueryCall . "(" . $this->_prep_value($param) . ");"; |
434 | 479 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * @param int $colCount |
19 | 19 | * @return HtmlTable |
20 | 20 | */ |
21 | - public function htmlTable($identifier, $rowCount, $colCount){ |
|
21 | + public function htmlTable($identifier, $rowCount, $colCount) { |
|
22 | 22 | return $this->addHtmlComponent(new HtmlTable($identifier, $rowCount, $colCount)); |
23 | 23 | } |
24 | 24 | |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | * @param $styles string|array|NULL |
30 | 30 | * @return HtmlMessage |
31 | 31 | */ |
32 | - public function htmlMessage($identifier, $content="",$styles=NULL) { |
|
33 | - $msg= $this->addHtmlComponent(new HtmlMessage($identifier, $content)); |
|
34 | - if(isset($msg)) |
|
32 | + public function htmlMessage($identifier, $content="", $styles=NULL) { |
|
33 | + $msg=$this->addHtmlComponent(new HtmlMessage($identifier, $content)); |
|
34 | + if (isset($msg)) |
|
35 | 35 | $msg->setStyle($styles); |
36 | 36 | return $msg; |
37 | 37 | } |
@@ -31,8 +31,9 @@ |
||
31 | 31 | */ |
32 | 32 | public function htmlMessage($identifier, $content="",$styles=NULL) { |
33 | 33 | $msg= $this->addHtmlComponent(new HtmlMessage($identifier, $content)); |
34 | - if(isset($msg)) |
|
35 | - $msg->setStyle($styles); |
|
34 | + if(isset($msg)) { |
|
35 | + $msg->setStyle($styles); |
|
36 | + } |
|
36 | 37 | return $msg; |
37 | 38 | } |
38 | 39 |