Completed
Push — master ( c6edab...f99fed )
by Jean-Christophe
03:30
created
Ajax/semantic/widgets/datatable/DataTable.php 1 patch
Doc Comments   +18 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,6 +33,10 @@  discard block
 block discarded – undo
33 33
 	protected $_refreshSelector;
34 34
 
35 35
 
36
+	/**
37
+	 * @param string $identifier
38
+	 * @param string $model
39
+	 */
36 40
 	public function __construct($identifier,$model,$modelInstance=NULL) {
37 41
 		parent::__construct($identifier, $model,$modelInstance);
38 42
 		$this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false);
@@ -56,6 +60,9 @@  discard block
 block discarded – undo
56 60
 
57 61
 
58 62
 
63
+	/**
64
+	 * @param string $op
65
+	 */
59 66
 	protected function _generateBehavior($op,$params,JsUtils $js){
60 67
 		if(isset($this->_urls[$op])){
61 68
 			$params=\array_merge($params,["attr"=>"data-ajax"]);
@@ -185,6 +192,9 @@  discard block
 block discarded – undo
185 192
 		return $this;
186 193
 	}
187 194
 
195
+	/**
196
+	 * @param PositionInTable $part
197
+	 */
188 198
 	private function addToolbarRow($part,$table,$captions){
189 199
 		$hasPart=$table->hasPart($part);
190 200
 		if($hasPart){
@@ -224,8 +234,8 @@  discard block
 block discarded – undo
224 234
 	 * Paginates the DataTable element with a Semantic HtmlPaginationMenu component
225 235
 	 * @param number $page the active page number
226 236
 	 * @param number $total_rowcount the total number of items
227
-	 * @param number $items_per_page The number of items per page
228
-	 * @param number $pages_visibles The number of visible pages in the Pagination component
237
+	 * @param integer $items_per_page The number of items per page
238
+	 * @param integer $pages_visibles The number of visible pages in the Pagination component
229 239
 	 * @return DataTable
230 240
 	 */
231 241
 	public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=4){
@@ -235,9 +245,9 @@  discard block
 block discarded – undo
235 245
 
236 246
 	/**
237 247
 	 * Auto Paginates the DataTable element with a Semantic HtmlPaginationMenu component
238
-	 * @param number $page the active page number
239
-	 * @param number $items_per_page The number of items per page
240
-	 * @param number $pages_visibles The number of visible pages in the Pagination component
248
+	 * @param integer $page the active page number
249
+	 * @param integer $items_per_page The number of items per page
250
+	 * @param integer $pages_visibles The number of visible pages in the Pagination component
241 251
 	 * @return DataTable
242 252
 	 */
243 253
 	public function autoPaginate($page=1,$items_per_page=10,$pages_visibles=4){
@@ -303,6 +313,9 @@  discard block
 block discarded – undo
303 313
 		return $this;
304 314
 	}
305 315
 
316
+	/**
317
+	 * @return string
318
+	 */
306 319
 	public function getRefreshSelector() {
307 320
 		if(isset($this->_refreshSelector))
308 321
 			return $this->_refreshSelector;
Please login to merge, or discard this patch.