@@ -48,6 +48,9 @@ |
||
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"); |
@@ -11,6 +11,11 @@ discard block |
||
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 |
||
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); |
@@ -23,6 +23,9 @@ discard block |
||
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 |
||
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); |
@@ -87,6 +87,9 @@ |
||
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 ) { |
@@ -208,7 +208,7 @@ |
||
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; |
@@ -21,6 +21,11 @@ discard block |
||
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 |
||
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) { |
@@ -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%"; |
@@ -676,6 +676,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -20,6 +20,10 @@ discard block |
||
20 | 20 | protected $attr; |
21 | 21 | |
22 | 22 | |
23 | + /** |
|
24 | + * @param string $identifier |
|
25 | + * @param string $tagName |
|
26 | + */ |
|
23 | 27 | public function __construct($identifier,$tagName){ |
24 | 28 | parent::__construct($identifier,$tagName); |
25 | 29 | $this->root=""; |
@@ -30,7 +34,6 @@ discard block |
||
30 | 34 | * Associate an ajax get to the elements, displayed in $targetSelector |
31 | 35 | * $attr member is used to build each element url |
32 | 36 | * @param string $targetSelector the target of the get |
33 | - * @param string $attr the html attribute used to build the elements url |
|
34 | 37 | * @return HtmlNavElement |
35 | 38 | */ |
36 | 39 | public function autoGetOnClick($targetSelector){ |