Completed
Push — master ( 8e32f8...32ad89 )
by Jean-Christophe
03:26
created
Ajax/bootstrap/html/HtmlButtongroups.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
 			$element->setStyle($value);
49 49
 	}
50 50
 
51
+	/**
52
+	 * @param HtmlDropdown $bt
53
+	 */
51 54
 	private function dropdownAsButton($bt) {
52 55
 		$this->addExistingDropDown($bt);
53 56
 		$bt->setTagName("button");
Please login to merge, or discard this patch.
Braces   +20 added lines, -16 removed lines patch added patch discarded remove patch
@@ -44,8 +44,9 @@  discard block
 block discarded – undo
44 44
 	}
45 45
 
46 46
 	public function setStyle($value) {
47
-		foreach ( $this->elements as $element )
48
-			$element->setStyle($value);
47
+		foreach ( $this->elements as $element ) {
48
+					$element->setStyle($value);
49
+		}
49 50
 	}
50 51
 
51 52
 	private function dropdownAsButton($bt) {
@@ -70,16 +71,18 @@  discard block
 block discarded – undo
70 71
 		} elseif ($element instanceof HtmlButton) {
71 72
 			$this->elements[]=$element;
72 73
 		} elseif (is_array($element)) {
73
-			if (array_key_exists("glyph", $element))
74
-				$bt=new HtmlGlyphButton($this->identifier."-button-".$iid);
75
-			elseif (array_key_exists("btnCaption", $element)) {
76
-				if (array_key_exists("split", $element))
77
-					$bt=new HtmlSplitbutton($this->identifier."-dropdown-".$iid);
78
-				else
79
-					$bt=new HtmlDropdown($this->identifier."-dropdown-".$iid);
74
+			if (array_key_exists("glyph", $element)) {
75
+							$bt=new HtmlGlyphButton($this->identifier."-button-".$iid);
76
+			} elseif (array_key_exists("btnCaption", $element)) {
77
+				if (array_key_exists("split", $element)) {
78
+									$bt=new HtmlSplitbutton($this->identifier."-dropdown-".$iid);
79
+				} else {
80
+									$bt=new HtmlDropdown($this->identifier."-dropdown-".$iid);
81
+				}
80 82
 				$this->dropdownAsButton($bt);
81
-			} else
82
-				$bt=new HtmlButton($this->identifier."-button-".$iid);
83
+			} else {
84
+							$bt=new HtmlButton($this->identifier."-button-".$iid);
85
+			}
83 86
 			$bt->fromArray($element);
84 87
 			$this->elements[]=$bt;
85 88
 			$result=$bt;
@@ -110,8 +113,9 @@  discard block
 block discarded – undo
110 113
 	public function setAlignment($value) {
111 114
 		if (is_int($value)) {
112 115
 			$value=CssRef::alignment("btn-group")[$value];
113
-		} else
114
-			$value="btn-group-".$value;
116
+		} else {
117
+					$value="btn-group-".$value;
118
+		}
115 119
 		if (strstr($value, "justified")) {
116 120
 			foreach ( $this->elements as $element ) {
117 121
 				$element->wrap('<div class="btn-group" role="group">', '</div>');
@@ -126,9 +130,9 @@  discard block
 block discarded – undo
126 130
 	 * @return HtmlButton
127 131
 	 */
128 132
 	public function getElement($index) {
129
-		if (is_int($index))
130
-			return $this->elements[$index];
131
-		else {
133
+		if (is_int($index)) {
134
+					return $this->elements[$index];
135
+		} else {
132 136
 			$elm=$this->getElementById($index, $this->elements);
133 137
 			return $elm;
134 138
 		}
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlButtontoolbar.php 2 patches
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,11 @@  discard block
 block discarded – undo
11 11
 
12 12
 class HtmlButtontoolbar extends HtmlButtongroups {
13 13
 
14
+	/**
15
+	 * @param string $identifier
16
+	 * @param string $cssStyle
17
+	 * @param string $size
18
+	 */
14 19
 	public function __construct($identifier, $elements=array(), $cssStyle=NULL, $size=NULL, $tagName="div") {
15 20
 		parent::__construct($identifier, $elements, $cssStyle, $size, $tagName);
16 21
 		$this->setClass("btn-toolbar");
@@ -56,7 +61,7 @@  discard block
 block discarded – undo
56 61
 
57 62
 	/**
58 63
 	 * return the Buttongroups at position $index
59
-	 * @return \Ajax\bootstrap\html\HtmlButtongroups
64
+	 * @return HtmlButton
60 65
 	 */
61 66
 	public function getGroup($index) {
62 67
 		return parent::getElement($index);
Please login to merge, or discard this patch.
Braces   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
 	 */
46 46
 	private function getLastButtonGroup() {
47 47
 		$nb=sizeof($this->elements);
48
-		if ($nb>0)
49
-			$bg=$this->elements [$nb-1];
50
-		else {
48
+		if ($nb>0) {
49
+					$bg=$this->elements [$nb-1];
50
+		} else {
51 51
 			$bg=new HtmlButtongroups($this->identifier."-buttongroups-".$nb);
52 52
 			$this->elements []=$bg;
53 53
 		}
@@ -65,8 +65,9 @@  discard block
 block discarded – undo
65 65
 	public function getLastGroup() {
66 66
 		$bg=null;
67 67
 		$nb=sizeof($this->elements);
68
-		if ($nb>0)
69
-			$bg=$this->elements [$nb-1];
68
+		if ($nb>0) {
69
+					$bg=$this->elements [$nb-1];
70
+		}
70 71
 		return $bg;
71 72
 	}
72 73
 
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlCarousel.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@  discard block
 block discarded – undo
23 23
 	protected $_base="";
24 24
 	protected $_glyphs=array ();
25 25
 
26
+	/**
27
+	 * @param string $identifier
28
+	 */
26 29
 	public function __construct($identifier, $images=NULL) {
27 30
 		parent::__construct($identifier);
28 31
 		$this->_template=include 'templates/tplCarousel.php';
@@ -61,7 +64,7 @@  discard block
 block discarded – undo
61 64
 	 *
62 65
 	 * @param string $caption
63 66
 	 * @param string $sens
64
-	 * @return HtmlCarouselControl|string
67
+	 * @return HtmlCarouselControl
65 68
 	 */
66 69
 	private function createControl($caption="next", $sens="left") {
67 70
 		$control=new HtmlCarouselControl($sens."-ctrl-".$this->identifier);
Please login to merge, or discard this patch.
Braces   +10 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,27 +75,30 @@
 block discarded – undo
75 75
 	}
76 76
 
77 77
 	private function getGlyph($sens="left") {
78
-		if (array_key_exists($sens, $this->_glyphs))
79
-			return $this->_glyphs [$sens];
78
+		if (array_key_exists($sens, $this->_glyphs)) {
79
+					return $this->_glyphs [$sens];
80
+		}
80 81
 		return "glyphicon-chevron-".$sens;
81 82
 	}
82 83
 
83 84
 	public function setRightGlyph($glyphicon) {
84 85
 		$glyphs=CssRef::glyphIcons();
85
-		if (array_search($glyphicon, $glyphs)!==false)
86
-			$this->_glyphs ["right"]=$glyphicon;
86
+		if (array_search($glyphicon, $glyphs)!==false) {
87
+					$this->_glyphs ["right"]=$glyphicon;
88
+		}
87 89
 	}
88 90
 
89 91
 	public function setLeftGlyph($glyphicon) {
90 92
 		$glyphs=CssRef::glyphIcons();
91
-		if (array_search($glyphicon, $glyphs)!==false)
92
-			$this->_glyphs ["left"]=$glyphicon;
93
+		if (array_search($glyphicon, $glyphs)!==false) {
94
+					$this->_glyphs ["left"]=$glyphicon;
95
+		}
93 96
 	}
94 97
 
95 98
 	public function addImage($imageSrc, $imageAlt="", $caption=NULL, $description=NULL) {
96 99
 		if(is_array($imageSrc)){
97 100
 			$this->addImage($imageSrc[0],@$imageSrc[1],@$imageSrc[2],@$imageSrc[3]);
98
-		}else{
101
+		} else{
99 102
 			$image=new HtmlCarouselItem("item-".$this->identifier);
100 103
 			$image->setImageSrc($this->_base.$imageSrc);
101 104
 			$image->setImageAlt($imageAlt);
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlForm.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
 		return $result;
88 88
 	}
89 89
 
90
+	/**
91
+	 * @return string
92
+	 */
90 93
 	private function getPrefix($element) {
91 94
 		$result="input_text";
92 95
 		foreach ( $this->formElementsPrefix as $k => $v ) {
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,8 +99,9 @@
 block discarded – undo
99 99
 	}
100 100
 
101 101
 	public function addGroup($identifier="") {
102
-		if ($identifier==="")
103
-			$identifier="form-".$this->identifier;
102
+		if ($identifier==="") {
103
+					$identifier="form-".$this->identifier;
104
+		}
104 105
 		$group=new HtmlDoubleElement($identifier);
105 106
 		$group->setTagName("div");
106 107
 		$group->setClass("form-group");
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlModal.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
 	 * Includes a modal-backdrop element.
209 209
 	 * Alternatively, specify static for a backdrop which doesn't close the modal on click.
210 210
 	 * @param Boolean $value default : true
211
-	 * @return HtmlModal
211
+	 * @return boolean
212 212
 	 */
213 213
 	public function setBackdrop($value) {
214 214
 		return $this->backdrop=$value;
Please login to merge, or discard this patch.
Braces   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -151,18 +151,20 @@  discard block
 block discarded – undo
151 151
 		$this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array (
152 152
 				"show" => $this->showOnStartup
153 153
 		));
154
-		if ($this->draggable)
155
-			$this->_bsComponent->setDraggable(true);
154
+		if ($this->draggable) {
155
+					$this->_bsComponent->setDraggable(true);
156
+		}
156 157
 		$this->_bsComponent->setBackdrop($this->backdrop);
157 158
 		$this->addEventsOnRun($js);
158 159
 		return $this->_bsComponent;
159 160
 	}
160 161
 
161 162
 	public function getButton($index) {
162
-		if (is_int($index))
163
-			return $this->buttons [$index];
164
-		else
165
-			return $this->getElementById($index, $this->buttons);
163
+		if (is_int($index)) {
164
+					return $this->buttons [$index];
165
+		} else {
166
+					return $this->getElementById($index, $this->buttons);
167
+		}
166 168
 	}
167 169
 
168 170
 	public function showOnCreate() {
@@ -188,8 +190,9 @@  discard block
 block discarded – undo
188 190
 
189 191
 	public function jsHideButton($index) {
190 192
 		$btn=$this->getButton($index);
191
-		if ($btn)
192
-			return "$('#".$btn->getIdentifier()."').hide();";
193
+		if ($btn) {
194
+					return "$('#".$btn->getIdentifier()."').hide();";
195
+		}
193 196
 	}
194 197
 
195 198
 	/**
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlPanel.php 2 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -21,6 +21,11 @@  discard block
 block discarded – undo
21 21
 	protected $collapseEnd;
22 22
 	protected $_showOnStartup;
23 23
 
24
+	/**
25
+	 * @param string $identifier
26
+	 * @param string $header
27
+	 * @param string $footer
28
+	 */
24 29
 	public function __construct($identifier, $content=NULL, $header=NULL, $footer=NULL) {
25 30
 		parent::__construct($identifier, "div");
26 31
 		$this->_template=include 'templates/tplPanel.php';
@@ -109,6 +114,9 @@  discard block
 block discarded – undo
109 114
 		return $this->_bsComponent;
110 115
 	}
111 116
 
117
+	/**
118
+	 * @param boolean $_collapsable
119
+	 */
112 120
 	public function setCollapsable($_collapsable) {
113 121
 		$this->_collapsable=$_collapsable;
114 122
 		if ($_collapsable) {
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,8 +89,9 @@  discard block
 block discarded – undo
89 89
 	 * @return \Ajax\bootstrap\html\HtmlPanel default : "panel-default"
90 90
 	 */
91 91
 	public function setStyle($cssStyle) {
92
-		if (!PhalconUtils::startsWith($cssStyle, "panel"))
93
-			$cssStyle="panel".$cssStyle;
92
+		if (!PhalconUtils::startsWith($cssStyle, "panel")) {
93
+					$cssStyle="panel".$cssStyle;
94
+		}
94 95
 		return $this->addToPropertyCtrl("class", $cssStyle, CssRef::Styles("panel"));
95 96
 	}
96 97
 
@@ -132,7 +133,8 @@  discard block
 block discarded – undo
132 133
 	 * @return $this default : false
133 134
 	 */
134 135
 	public function show($value) {
135
-		if ($this->_collapsable)
136
-			$this->_showOnStartup=$value;
136
+		if ($this->_collapsable) {
137
+					$this->_showOnStartup=$value;
138
+		}
137 139
 	}
138 140
 }
139 141
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlTabs.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 	protected $_tabsType="tabs";
21 21
 	protected $stacked="";
22 22
 
23
+	/**
24
+	 * @param string $identifier
25
+	 */
23 26
 	public function __construct($identifier, $tagName="ul") {
24 27
 		parent::__construct($identifier, $tagName);
25 28
 		$this->_template="<%tagName% %properties%>%tabs%</%tagName%>%content%";
Please login to merge, or discard this patch.
Braces   +17 added lines, -12 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@  discard block
 block discarded – undo
35 35
 					$tab
36 36
 			);
37 37
 			array_splice($this->tabs, $index, 0, $inserted);
38
-		} else
39
-			$this->tabs []=$tab;
38
+		} else {
39
+					$this->tabs []=$tab;
40
+		}
40 41
 	}
41 42
 
42 43
 	public function setActive($index){
@@ -116,9 +117,9 @@  discard block
 block discarded – undo
116 117
 	public function createTabContents() {
117 118
 		$tabContent=new HtmlTabContent("tabcontent-".$this->identifier);
118 119
 		foreach ( $this->tabs as $tab ) {
119
-			if ($tab instanceof HtmlTabItem)
120
-				$tabContent->addTabItem($tab->getHref());
121
-			elseif ($tab instanceof HtmlDropdown) {
120
+			if ($tab instanceof HtmlTabItem) {
121
+							$tabContent->addTabItem($tab->getHref());
122
+			} elseif ($tab instanceof HtmlDropdown) {
122 123
 				foreach ( $tab->getItems() as $dropdownItem ) {
123 124
 					$tabContent->addTabItem($dropdownItem->getHref());
124 125
 				}
@@ -137,8 +138,9 @@  discard block
 block discarded – undo
137 138
 
138 139
 	public function setContentToTab($index, $text) {
139 140
 		$tabContentItem=$this->content->getTabItem($index);
140
-		if (isset($tabContentItem))
141
-			$tabContentItem->setContent($text);
141
+		if (isset($tabContentItem)) {
142
+					$tabContentItem->setContent($text);
143
+		}
142 144
 	}
143 145
 
144 146
 	public function countTabs() {
@@ -146,8 +148,9 @@  discard block
 block discarded – undo
146 148
 	}
147 149
 
148 150
 	public function getTabItem($index) {
149
-		if ($index<sizeof($this->content->get))
150
-			return $this->content;
151
+		if ($index<sizeof($this->content->get)) {
152
+					return $this->content;
153
+		}
151 154
 	}
152 155
 
153 156
 	public function fadeEffect() {
@@ -168,9 +171,11 @@  discard block
 block discarded – undo
168 171
 	}
169 172
 
170 173
 	public function setStacked($stacked=true){
171
-		if($stacked)
172
-			$this->stacked="nav-stacked";
173
-		else $this->stacked="";
174
+		if($stacked) {
175
+					$this->stacked="nav-stacked";
176
+		} else {
177
+			$this->stacked="";
178
+		}
174 179
 	}
175 180
 
176 181
 	/* (non-PHPdoc)
Please login to merge, or discard this patch.
Ajax/JsUtils.php 2 patches
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -676,6 +676,9 @@  discard block
 block discarded – undo
676 676
 		return $this->_create_json($json_result, $match_array_type);
677 677
 	}
678 678
 
679
+	/**
680
+	 * @param boolean $match_array_type
681
+	 */
679 682
 	private function _create_json($json_result, $match_array_type) {
680 683
 		$json=array ();
681 684
 		$_is_assoc=TRUE;
@@ -699,7 +702,7 @@  discard block
 block discarded – undo
699 702
 	 * Checks for an associative array
700 703
 	 *
701 704
 	 * @param type
702
-	 * @return type
705
+	 * @return boolean
703 706
 	 */
704 707
 	public function _is_associative_array($arr) {
705 708
 		foreach ( array_keys($arr) as $key => $val ) {
@@ -939,7 +942,7 @@  discard block
 block discarded – undo
939 942
 	 * @param string $jqueryCall the JQuery callback
940 943
 	 * @param mixed $param array or string parameters
941 944
 	 * @param string $jsCallback javascript code to execute after the jquery call
942
-	 * @return mixed
945
+	 * @return string
943 946
 	 */
944 947
 	public function doJQuery($element, $jqueryCall, $param="", $jsCallback="") {
945 948
 		return $this->js->_doJQuery($element, $jqueryCall, $param, $jsCallback, true);
@@ -951,7 +954,7 @@  discard block
 block discarded – undo
951 954
 	 * @param string $jqueryCall the JQuery callback
952 955
 	 * @param mixed $param array or string parameters
953 956
 	 * @param string $jsCallback javascript code to execute after the jquery call
954
-	 * @return mixed
957
+	 * @return string
955 958
 	 */
956 959
 	public function doJQueryDeferred($element, $jqueryCall, $param="", $jsCallback="") {
957 960
 		return $this->js->_doJQuery($element, $jqueryCall, $param, $jsCallback, false);
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,9 @@
 block discarded – undo
45 45
 
46 46
 	protected function _setDi($di) {
47 47
 		$this->_di=$di;
48
-		if ($this->js!=null&&$di!=null)
49
-			$this->js->setDi($di);
48
+		if ($this->js!=null&&$di!=null) {
49
+					$this->js->setDi($di);
50
+		}
50 51
 	}
51 52
 
52 53
 	/**
Please login to merge, or discard this patch.
Ajax/bootstrap/components/Tabs.php 1 patch
Braces   +15 added lines, -10 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@  discard block
 block discarded – undo
35 35
 	}
36 36
 
37 37
 	public function getTab($index) {
38
-		if ($index>0&&$index<sizeof($this->tabs))
39
-			return $this->tabs [$index];
38
+		if ($index>0&&$index<sizeof($this->tabs)) {
39
+					return $this->tabs [$index];
40
+		}
40 41
 	}
41 42
 
42 43
 	public function show($index) {
@@ -52,8 +53,9 @@  discard block
 block discarded – undo
52 53
 	 */
53 54
 	public function onShow($index, $jsCode) {
54 55
 		$tab=$this->getTab($index);
55
-		if (isset($tab))
56
-			return $tab->onShow($jsCode);
56
+		if (isset($tab)) {
57
+					return $tab->onShow($jsCode);
58
+		}
57 59
 	}
58 60
 
59 61
 	/**
@@ -64,8 +66,9 @@  discard block
 block discarded – undo
64 66
 	 */
65 67
 	public function onShown($index, $jsCode) {
66 68
 		$tab=$this->getTab($index);
67
-		if (isset($tab))
68
-			return $tab->onShown($jsCode);
69
+		if (isset($tab)) {
70
+					return $tab->onShown($jsCode);
71
+		}
69 72
 	}
70 73
 
71 74
 	/**
@@ -76,8 +79,9 @@  discard block
 block discarded – undo
76 79
 	 */
77 80
 	public function onHide($index, $jsCode) {
78 81
 		$tab=$this->getTab($index);
79
-		if (isset($tab))
80
-			return $tab->onShow($jsCode);
82
+		if (isset($tab)) {
83
+					return $tab->onShow($jsCode);
84
+		}
81 85
 	}
82 86
 
83 87
 	/**
@@ -88,7 +92,8 @@  discard block
 block discarded – undo
88 92
 	 */
89 93
 	public function onHidden($index, $jsCode) {
90 94
 		$tab=$this->getTab($index);
91
-		if (isset($tab))
92
-			return $tab->onShow($jsCode);
95
+		if (isset($tab)) {
96
+					return $tab->onShow($jsCode);
97
+		}
93 98
 	}
94 99
 }
95 100
\ No newline at end of file
Please login to merge, or discard this patch.