Completed
Push — master ( a4feba...3ad5ef )
by Jean-Christophe
03:50
created
Ajax/semantic/widgets/datatable/DataTable.php 1 patch
Doc Comments   +16 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@  discard block
 block discarded – undo
63 63
 
64 64
 
65 65
 
66
+	/**
67
+	 * @param string $op
68
+	 */
66 69
 	protected function _generateBehavior($op,$params,JsUtils $js){
67 70
 		if(isset($this->_urls[$op])){
68 71
 			$params=\array_merge($params,["attr"=>"data-ajax"]);
@@ -139,6 +142,9 @@  discard block
 block discarded – undo
139 142
 		}
140 143
 	}
141 144
 
145
+	/**
146
+	 * @param string $checkedClass
147
+	 */
142 148
 	protected function _generateRow($instance,&$table,$checkedClass=null){
143 149
 		$this->_instanceViewer->setInstance($instance);
144 150
 		InstanceViewer::$index++;
@@ -215,6 +221,9 @@  discard block
 block discarded – undo
215 221
 		return $this;
216 222
 	}
217 223
 
224
+	/**
225
+	 * @param PositionInTable $part
226
+	 */
218 227
 	private function addToolbarRow($part,$table,$captions){
219 228
 		$hasPart=$table->hasPart($part);
220 229
 		if($hasPart){
@@ -254,7 +263,7 @@  discard block
 block discarded – undo
254 263
 	 * Paginates the DataTable element with a Semantic HtmlPaginationMenu component
255 264
 	 * @param number $page the active page number
256 265
 	 * @param number $total_rowcount the total number of items
257
-	 * @param number $items_per_page The number of items per page
266
+	 * @param integer $items_per_page The number of items per page
258 267
 	 * @param number $pages_visibles The number of visible pages in the Pagination component
259 268
 	 * @return DataTable
260 269
 	 */
@@ -265,9 +274,9 @@  discard block
 block discarded – undo
265 274
 
266 275
 	/**
267 276
 	 * Auto Paginates the DataTable element with a Semantic HtmlPaginationMenu component
268
-	 * @param number $page the active page number
269
-	 * @param number $items_per_page The number of items per page
270
-	 * @param number $pages_visibles The number of visible pages in the Pagination component
277
+	 * @param integer $page the active page number
278
+	 * @param integer $items_per_page The number of items per page
279
+	 * @param integer $pages_visibles The number of visible pages in the Pagination component
271 280
 	 * @return DataTable
272 281
 	 */
273 282
 	public function autoPaginate($page=1,$items_per_page=10,$pages_visibles=4){
@@ -333,6 +342,9 @@  discard block
 block discarded – undo
333 342
 		return $this;
334 343
 	}
335 344
 
345
+	/**
346
+	 * @return string
347
+	 */
336 348
 	public function getRefreshSelector() {
337 349
 		if(isset($this->_refreshSelector))
338 350
 			return $this->_refreshSelector;
Please login to merge, or discard this patch.
Ajax/semantic/widgets/dataform/DataForm.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@  discard block
 block discarded – undo
67 67
 		}
68 68
 	}
69 69
 
70
+	/**
71
+	 * @param HtmlForm $form
72
+	 */
70 73
 	protected function _generateFields($form,$values,$headers,$sepFirst,$sepLast,$wrappers){
71 74
 		$wrapper=null;
72 75
 		$fields=\array_slice($values, $sepFirst+1,$sepLast-$sepFirst);
@@ -132,12 +135,20 @@  discard block
 block discarded – undo
132 135
 		$this->content[$this->_toolbarPosition]=$this->_toolbar;
133 136
 	}
134 137
 
138
+	/**
139
+	 * @param integer $index
140
+	 * @param string $title
141
+	 */
135 142
 	public function addDividerBefore($index,$title){
136 143
 		$index=$this->_getIndex($index);
137 144
 		$this->_instanceViewer->addHeaderDividerBefore($index, $title);
138 145
 		return $this;
139 146
 	}
140 147
 
148
+	/**
149
+	 * @param string $index
150
+	 * @param string $contentAfter
151
+	 */
141 152
 	public function addWrapper($index,$contentBefore,$contentAfter=null){
142 153
 		$index=$this->_getIndex($index);
143 154
 		$this->_instanceViewer->addWrapper($index, $contentBefore,$contentAfter);
Please login to merge, or discard this patch.
Ajax/semantic/html/content/table/HtmlTableContent.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@  discard block
 block discarded – undo
62 62
 		return $tr;
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param integer $value
67
+	 */
65 68
 	public function newRow($value) {
66 69
 		return $this->createItem($value);
67 70
 	}
@@ -160,6 +163,9 @@  discard block
 block discarded – undo
160 163
 		return $this;
161 164
 	}
162 165
 
166
+	/**
167
+	 * @param integer $colIndex
168
+	 */
163 169
 	public function setColValues($colIndex, $values=array()) {
164 170
 		$count=$this->count();
165 171
 		if (!\is_array($values)) {
@@ -180,6 +186,9 @@  discard block
 block discarded – undo
180 186
 		return $this;
181 187
 	}
182 188
 
189
+	/**
190
+	 * @param integer $rowIndex
191
+	 */
183 192
 	public function setRowValues($rowIndex, $values=array()) {
184 193
 		$count=$this->count();
185 194
 		if (!\is_array($values)) {
@@ -189,6 +198,9 @@  discard block
 block discarded – undo
189 198
 		return $this;
190 199
 	}
191 200
 
201
+	/**
202
+	 * @param string $function
203
+	 */
192 204
 	private function colAlign($colIndex, $function) {
193 205
 		$count=$this->count();
194 206
 		for($i=0; $i < $count; $i++) {
Please login to merge, or discard this patch.
Ajax/semantic/widgets/base/FieldAsTrait.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -29,9 +29,17 @@  discard block
 block discarded – undo
29 29
 trait FieldAsTrait{
30 30
 
31 31
 	abstract protected function _getFieldIdentifier($prefix,$name="");
32
+
33
+	/**
34
+	 * @param \Closure $callback
35
+	 */
32 36
 	abstract public function setValueFunction($index,$callback);
33 37
 	abstract protected function _getFieldName($index);
34 38
 	abstract protected function _getFieldCaption($index);
39
+
40
+	/**
41
+	 * @param string $event
42
+	 */
35 43
 	abstract protected function _buttonAsSubmit(HtmlButton &$button,$event,$url,$responseElement=NULL,$parameters=NULL);
36 44
 
37 45
 	/**
@@ -242,6 +250,9 @@  discard block
 block discarded – undo
242 250
 		}
243 251
 	}
244 252
 
253
+	/**
254
+	 * @param integer $index
255
+	 */
245 256
 	public function fieldAs($index,$type,$attributes=NULL){
246 257
 		$method="fieldAs".\ucfirst($type);
247 258
 		if(\method_exists($this, $method)){
Please login to merge, or discard this patch.