@@ -84,6 +84,9 @@ discard block |
||
| 84 | 84 | return $this; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | + /** |
|
| 88 | + * @param integer $index |
|
| 89 | + */ |
|
| 87 | 90 | public function removeItem($index){ |
| 88 | 91 | return array_splice($this->content, $index, 1); |
| 89 | 92 | } |
@@ -99,6 +102,9 @@ discard block |
||
| 99 | 102 | return $this->addItem($function($object)); |
| 100 | 103 | } |
| 101 | 104 | |
| 105 | + /** |
|
| 106 | + * @param \Closure $callBack |
|
| 107 | + */ |
|
| 102 | 108 | public function apply($callBack){ |
| 103 | 109 | foreach ($this->content as $item){ |
| 104 | 110 | $callBack($item); |
@@ -64,8 +64,7 @@ discard block |
||
| 64 | 64 | * Associate an ajax get to the breadcrumb elements, displayed in $targetSelector |
| 65 | 65 | * $attr member is used to build each element url |
| 66 | 66 | * @param string $targetSelector the target of the get |
| 67 | - * @param string $attr the html attribute used to build the elements url |
|
| 68 | - * @return HtmlBreadcrumbs |
|
| 67 | + * @return HtmlBreadcrumb |
|
| 69 | 68 | */ |
| 70 | 69 | public function autoGetOnClick($targetSelector) { |
| 71 | 70 | return $this->getOnClick($this->root, $targetSelector, array ("attr" => $this->attr )); |
@@ -91,7 +90,7 @@ discard block |
||
| 91 | 90 | * Add new elements in breadcrumbs corresponding to request dispatcher : controllerName, actionName, parameters |
| 92 | 91 | * @param JsUtils $js |
| 93 | 92 | * @param Dispatcher $dispatcher the request dispatcher |
| 94 | - * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
|
| 93 | + * @return HtmlBreadcrumb |
|
| 95 | 94 | */ |
| 96 | 95 | public function fromDispatcher(JsUtils $js,$dispatcher, $startIndex=0) { |
| 97 | 96 | return $this->addItems($js->fromDispatcher($dispatcher)); |
@@ -120,7 +119,7 @@ discard block |
||
| 120 | 119 | * sets the function who generates the href elements. |
| 121 | 120 | * default : function($element){return $element->getContent()} |
| 122 | 121 | * @param function $_hrefFunction |
| 123 | - * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
|
| 122 | + * @return HtmlBreadcrumb |
|
| 124 | 123 | */ |
| 125 | 124 | public function setHrefFunction($_hrefFunction) { |
| 126 | 125 | $this->_hrefFunction=$_hrefFunction; |
@@ -22,6 +22,9 @@ discard block |
||
| 22 | 22 | private $_colSizing=true; |
| 23 | 23 | private $_implicitRows=false; |
| 24 | 24 | |
| 25 | + /** |
|
| 26 | + * @param string $identifier |
|
| 27 | + */ |
|
| 25 | 28 | public function __construct($identifier, $numRows=1, $numCols=NULL, $createCols=true, $implicitRows=false) { |
| 26 | 29 | parent::__construct($identifier, "div", "ui grid"); |
| 27 | 30 | $this->_implicitRows=$implicitRows; |
@@ -158,7 +161,7 @@ discard block |
||
| 158 | 161 | /** |
| 159 | 162 | * return the row at $index |
| 160 | 163 | * @param int $index |
| 161 | - * @return \Ajax\semantic\html\collections\HtmlGridRow |
|
| 164 | + * @return \Ajax\common\html\HtmlDoubleElement |
|
| 162 | 165 | */ |
| 163 | 166 | public function getRow($index) { |
| 164 | 167 | return $this->getItem($index); |
@@ -297,7 +300,7 @@ discard block |
||
| 297 | 300 | |
| 298 | 301 | /** |
| 299 | 302 | * stretch the row contents to take up the entire column height |
| 300 | - * @return \Ajax\semantic\html\content\HtmlGridRow |
|
| 303 | + * @return HtmlGrid |
|
| 301 | 304 | */ |
| 302 | 305 | public function setStretched() { |
| 303 | 306 | return $this->addToProperty("class", "stretched"); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * Sets the menu type |
| 35 | 35 | * @param string $type one of text,item |
| 36 | - * @return \Ajax\semantic\html\collections\HtmlMenu |
|
| 36 | + * @return HtmlMenu |
|
| 37 | 37 | */ |
| 38 | 38 | public function setType($type="") { |
| 39 | 39 | return $this->addToPropertyCtrl("class", $type, array ("","item","text" )); |
@@ -81,6 +81,7 @@ discard block |
||
| 81 | 81 | * {@inheritDoc} |
| 82 | 82 | * |
| 83 | 83 | * @see \Ajax\common\html\HtmlCollection::insertItem() |
| 84 | + * @param HtmlIcon $item |
|
| 84 | 85 | */ |
| 85 | 86 | public function insertItem($item, $position=0) { |
| 86 | 87 | $item=parent::insertItem($this->getItemToInsert($item), $position); |
@@ -11,6 +11,9 @@ |
||
| 11 | 11 | |
| 12 | 12 | abstract class HtmlAbsractItem extends HtmlSemDoubleElement { |
| 13 | 13 | |
| 14 | + /** |
|
| 15 | + * @param string $baseClass |
|
| 16 | + */ |
|
| 14 | 17 | public function __construct($identifier, $baseClass,$content=NULL) { |
| 15 | 18 | parent::__construct($identifier, "div", $baseClass); |
| 16 | 19 | $this->content=array(); |
@@ -22,6 +22,9 @@ discard block |
||
| 22 | 22 | private $_colSize; |
| 23 | 23 | private $_implicite=false; |
| 24 | 24 | |
| 25 | + /** |
|
| 26 | + * @param string $identifier |
|
| 27 | + */ |
|
| 25 | 28 | public function __construct( $identifier,$numCols=NULL,$colSizing=false,$implicite=false){ |
| 26 | 29 | parent::__construct( $identifier,"div","row"); |
| 27 | 30 | $this->_implicite=$implicite; |
@@ -55,7 +58,7 @@ discard block |
||
| 55 | 58 | /** |
| 56 | 59 | * return the col at $index |
| 57 | 60 | * @param int $index |
| 58 | - * @return \Ajax\semantic\html\collections\HtmlGridCol |
|
| 61 | + * @return \Ajax\common\html\HtmlDoubleElement |
|
| 59 | 62 | */ |
| 60 | 63 | public function getCol($index){ |
| 61 | 64 | return $this->getItem($index); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | /** |
| 39 | 39 | * Set the button value |
| 40 | 40 | * @param string $value |
| 41 | - * @return \Ajax\semantic\html\HtmlButton |
|
| 41 | + * @return HtmlButton |
|
| 42 | 42 | */ |
| 43 | 43 | public function setValue($value) { |
| 44 | 44 | $this->content=$value; |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * define the button style |
| 50 | - * @param string|int $cssStyle |
|
| 51 | - * @return \Ajax\semantic\html\HtmlButton default : "" |
|
| 50 | + * @param string $cssStyle |
|
| 51 | + * @return HtmlButton default : "" |
|
| 52 | 52 | */ |
| 53 | 53 | public function setStyle($cssStyle) { |
| 54 | 54 | return $this->addToProperty("class", $cssStyle); |
@@ -98,7 +98,6 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | 100 | * Add and return a button label |
| 101 | - * @param string $caption |
|
| 102 | 101 | * @param string $before |
| 103 | 102 | * @param string $icon |
| 104 | 103 | * @return \Ajax\semantic\html\elements\HtmlLabel |
@@ -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) { |