@@ -20,6 +20,9 @@ |
||
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%"; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * Sets the menu type |
27 | 27 | * @param string $type one of text,item |
28 | - * @return \Ajax\semantic\html\collections\HtmlMenu |
|
28 | + * @return HtmlMenu |
|
29 | 29 | */ |
30 | 30 | public function setType($type=""){ |
31 | 31 | return $this->addToPropertyCtrl("class", $type, array("","item","text")); |
@@ -20,6 +20,9 @@ |
||
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%"; |
@@ -20,6 +20,9 @@ |
||
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%"; |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @param string $element |
209 | 209 | * @param array $options |
210 | - * @return void |
|
210 | + * @return string |
|
211 | 211 | */ |
212 | 212 | public function sortable($element, $options=array()) { |
213 | 213 | if (count($options)>0) { |
@@ -351,6 +351,7 @@ discard block |
||
351 | 351 | /** |
352 | 352 | * A wrapper for writing document.ready() |
353 | 353 | * |
354 | + * @param string $js |
|
354 | 355 | * @return string |
355 | 356 | */ |
356 | 357 | public function _document_ready($js) { |
@@ -420,6 +421,9 @@ discard block |
||
420 | 421 | return $speed; |
421 | 422 | } |
422 | 423 | |
424 | + /** |
|
425 | + * @param string $input |
|
426 | + */ |
|
423 | 427 | private function minify($input) { |
424 | 428 | if(trim($input) === "") return $input; |
425 | 429 | return preg_replace( |
@@ -93,7 +93,6 @@ |
||
93 | 93 | /** |
94 | 94 | * Return a new Semantic Html Breadcrumb |
95 | 95 | * @param string $identifier |
96 | - * @param array $elements |
|
97 | 96 | * @param boolean $autoActive sets the last element's class to <b>active</b> if true. default : true |
98 | 97 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
99 | 98 | * @return HtmlBreadcrumb |
@@ -9,7 +9,17 @@ discard block |
||
9 | 9 | protected $ajaxLoader='<span></span><span></span><span></span><span></span><span></span>'; |
10 | 10 | |
11 | 11 | public abstract function _prep_value($value); |
12 | + |
|
13 | + /** |
|
14 | + * @param string $element |
|
15 | + * @param string $js |
|
16 | + * @param string $event |
|
17 | + */ |
|
12 | 18 | public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
19 | + |
|
20 | + /** |
|
21 | + * @param string $retour |
|
22 | + */ |
|
13 | 23 | protected function addLoading(&$retour, $responseElement) { |
14 | 24 | $loading_notifier='<div class="ajax-loader">'; |
15 | 25 | if ($this->ajaxLoader=='') { |
@@ -22,13 +32,23 @@ discard block |
||
22 | 32 | $retour.="\t\t$({$responseElement}).prepend('{$loading_notifier}');\n"; |
23 | 33 | } |
24 | 34 | |
35 | + /** |
|
36 | + * @param string $url |
|
37 | + */ |
|
25 | 38 | public function _get($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) { |
26 | 39 | return $this->_ajax("get", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly); |
27 | 40 | } |
41 | + |
|
42 | + /** |
|
43 | + * @param string $url |
|
44 | + */ |
|
28 | 45 | public function _post($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) { |
29 | 46 | return $this->_ajax("post", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly); |
30 | 47 | } |
31 | 48 | |
49 | + /** |
|
50 | + * @param string $method |
|
51 | + */ |
|
32 | 52 | protected function _ajax($method,$url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) { |
33 | 53 | if(JString::isNull($params)){$params="{}";} |
34 | 54 | $jsCallback=isset($jsCallback) ? $jsCallback : ""; |
@@ -45,6 +65,9 @@ discard block |
||
45 | 65 | return $retour; |
46 | 66 | } |
47 | 67 | |
68 | + /** |
|
69 | + * @param string $attr |
|
70 | + */ |
|
48 | 71 | protected function _getAjaxUrl($url,$attr){ |
49 | 72 | $url=$this->_correctAjaxUrl($url); |
50 | 73 | $retour="url='".$url."';\n"; |
@@ -176,6 +199,11 @@ discard block |
||
176 | 199 | return $this->_add_event($element, $this->_jsonArray($maskSelector,$url,$method, $params,$jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation,$immediatly); |
177 | 200 | } |
178 | 201 | |
202 | + /** |
|
203 | + * @param string $url |
|
204 | + * @param string $form |
|
205 | + * @param string $responseElement |
|
206 | + */ |
|
179 | 207 | public function _postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) { |
180 | 208 | $jsCallback=isset($jsCallback) ? $jsCallback : ""; |
181 | 209 | $retour=$this->_getAjaxUrl($url, $attr); |
@@ -3,7 +3,16 @@ |
||
3 | 3 | namespace Ajax\common\traits; |
4 | 4 | |
5 | 5 | trait JqueryEventsTrait { |
6 | + |
|
7 | + /** |
|
8 | + * @param string $element |
|
9 | + */ |
|
6 | 10 | public abstract function _prep_element($element); |
11 | + |
|
12 | + /** |
|
13 | + * @param string $element |
|
14 | + * @param string $event |
|
15 | + */ |
|
7 | 16 | public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
8 | 17 | |
9 | 18 | /** |
@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * |
24 | 24 | * @param string $identifier the id |
25 | + * @param string $cssStyle |
|
25 | 26 | */ |
26 | 27 | public function __construct($identifier, $value="", $items=array(), $cssStyle=null, $onClick=null) { |
27 | 28 | parent::__construct($identifier, "", $cssStyle, $onClick); |
@@ -45,7 +46,7 @@ discard block |
||
45 | 46 | /** |
46 | 47 | * define the button style |
47 | 48 | * avaible values : "btn-default","btn-primary","btn-success","btn-info","btn-warning","btn-danger" |
48 | - * @param string|int $cssStyle |
|
49 | + * @param string $cssStyle |
|
49 | 50 | * @return \Ajax\bootstrap\html\HtmlDropdown default : "btn-default" |
50 | 51 | */ |
51 | 52 | public function setStyle($cssStyle) { |
@@ -149,10 +150,16 @@ discard block |
||
149 | 150 | return $this->items [$index]; |
150 | 151 | } |
151 | 152 | |
153 | + /** |
|
154 | + * @param string $value |
|
155 | + */ |
|
152 | 156 | public function setBtnClass($value) { |
153 | 157 | $this->class=$value; |
154 | 158 | } |
155 | 159 | |
160 | + /** |
|
161 | + * @param string $value |
|
162 | + */ |
|
156 | 163 | public function setMClass($value) { |
157 | 164 | $this->mClass=$value; |
158 | 165 | } |
@@ -183,6 +190,7 @@ discard block |
||
183 | 190 | /** |
184 | 191 | * Sets the tagName's dropdown |
185 | 192 | * @see \Ajax\bootstrap\html\BaseHtml::setTagName() |
193 | + * @param string $tagName |
|
186 | 194 | */ |
187 | 195 | public function setTagName($tagName) { |
188 | 196 | if ($tagName=="button") |
@@ -194,6 +202,9 @@ discard block |
||
194 | 202 | return $this->compile(); |
195 | 203 | } |
196 | 204 | |
205 | + /** |
|
206 | + * @param string $btnCaption |
|
207 | + */ |
|
197 | 208 | public function setBtnCaption($btnCaption) { |
198 | 209 | $this->btnCaption=$btnCaption; |
199 | 210 | return $this; |