@@ -13,6 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | class HtmlIconGroups extends HtmlSemCollection { |
15 | 15 | |
16 | + /** |
|
17 | + * @param string $identifier |
|
18 | + */ |
|
16 | 19 | public function __construct($identifier, $icons=array(), $size="") { |
17 | 20 | parent::__construct($identifier, "i", "icons"); |
18 | 21 | $this->addItems($icons); |
@@ -20,7 +20,6 @@ |
||
20 | 20 | |
21 | 21 | /** |
22 | 22 | * |
23 | - * @param string $side |
|
24 | 23 | * @return \Ajax\semantic\html\elements\HtmlLabel |
25 | 24 | */ |
26 | 25 | public function setPointing($value=Direction::NONE) { |
@@ -10,6 +10,9 @@ discard block |
||
10 | 10 | class HtmlList extends HtmlSemCollection { |
11 | 11 | protected $_hasCheckedList; |
12 | 12 | |
13 | + /** |
|
14 | + * @param string $identifier |
|
15 | + */ |
|
13 | 16 | public function __construct($identifier, $items=array()) { |
14 | 17 | parent::__construct($identifier, "div", "ui list"); |
15 | 18 | $this->addItems($items); |
@@ -22,6 +25,9 @@ discard block |
||
22 | 25 | return $item; |
23 | 26 | } |
24 | 27 | |
28 | + /** |
|
29 | + * @param integer $niveau |
|
30 | + */ |
|
25 | 31 | public function addHeader($niveau, $content) { |
26 | 32 | $header=new HtmlHeader("header-" . $this->identifier, $niveau, $content, "page"); |
27 | 33 | $this->wrap($header); |
@@ -10,6 +10,9 @@ discard block |
||
10 | 10 | |
11 | 11 | protected $params=array(); |
12 | 12 | |
13 | + /** |
|
14 | + * @param string $identifier |
|
15 | + */ |
|
13 | 16 | public function __construct( $identifier, $tagName="div", $baseClass="ui"){ |
14 | 17 | parent::__construct( $identifier, "div", "ui accordion"); |
15 | 18 | } |
@@ -29,6 +32,9 @@ discard block |
||
29 | 32 | return ($value instanceof HtmlAccordionItem)===false; |
30 | 33 | } |
31 | 34 | |
35 | + /** |
|
36 | + * @param string $title |
|
37 | + */ |
|
32 | 38 | public function addPanel($title,$content){ |
33 | 39 | return $this->addItem([$title,$content]); |
34 | 40 | } |
@@ -14,6 +14,9 @@ discard block |
||
14 | 14 | protected $_params=array(); |
15 | 15 | protected $_paramParts=array(); |
16 | 16 | |
17 | + /** |
|
18 | + * @param string $identifier |
|
19 | + */ |
|
17 | 20 | public function __construct($identifier, $header="", $content="", $actions=array()) { |
18 | 21 | parent::__construct($identifier, "div","ui modal"); |
19 | 22 | if(isset($header)){ |
@@ -27,6 +30,9 @@ discard block |
||
27 | 30 | } |
28 | 31 | } |
29 | 32 | |
33 | + /** |
|
34 | + * @param string $value |
|
35 | + */ |
|
30 | 36 | public function setHeader($value) { |
31 | 37 | $this->content["header"]=new HtmlSemDoubleElement("header-" . $this->identifier, "a", "header", $value); |
32 | 38 | return $this; |
@@ -103,6 +109,9 @@ discard block |
||
103 | 109 | return $this->addElementInPart(new HtmlSemDoubleElement($part."-" . $this->identifier, "div", $uiClass, $content), $part); |
104 | 110 | } |
105 | 111 | |
112 | + /** |
|
113 | + * @param BaseHtml $element |
|
114 | + */ |
|
106 | 115 | private function addElementInPart($element,$part) { |
107 | 116 | $this->content[$part]->addContent($element); |
108 | 117 | return $element; |
@@ -145,7 +154,6 @@ discard block |
||
145 | 154 | /** |
146 | 155 | * render the content of $controller::$action and set the response to the modal content |
147 | 156 | * @param JsUtils $js |
148 | - * @param string $title The panel title |
|
149 | 157 | * @param Controller $initialControllerInstance |
150 | 158 | * @param string $controllerName the controller name |
151 | 159 | * @param string $actionName the action name |
@@ -30,8 +30,6 @@ |
||
30 | 30 | /** |
31 | 31 | * |
32 | 32 | * @param string $identifier |
33 | - * @param int $rowCount |
|
34 | - * @param int $colCount |
|
35 | 33 | * @return HtmlRating |
36 | 34 | */ |
37 | 35 | public function htmlRating($identifier, $value, $max, $icon="") { |
@@ -13,6 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | class HtmlIconGroups extends HtmlSemCollection { |
15 | 15 | |
16 | + /** |
|
17 | + * @param string $identifier |
|
18 | + */ |
|
16 | 19 | public function __construct($identifier, $icons=array(), $size="") { |
17 | 20 | parent::__construct($identifier, "i", "icons"); |
18 | 21 | $this->addItems($icons); |
@@ -20,7 +20,6 @@ |
||
20 | 20 | |
21 | 21 | /** |
22 | 22 | * |
23 | - * @param string $side |
|
24 | 23 | * @return \Ajax\semantic\html\elements\HtmlLabel |
25 | 24 | */ |
26 | 25 | public function setPointing($value=Direction::NONE) { |
@@ -13,6 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | class HtmlIconGroups extends HtmlSemCollection { |
15 | 15 | |
16 | + /** |
|
17 | + * @param string $identifier |
|
18 | + */ |
|
16 | 19 | public function __construct($identifier, $icons=array(), $size="") { |
17 | 20 | parent::__construct($identifier, "i", "icons"); |
18 | 21 | $this->addItems($icons); |