@@ -67,6 +67,9 @@ discard block |
||
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | + /** |
|
| 71 | + * @param HtmlForm $form |
|
| 72 | + */ |
|
| 70 | 73 | protected function _generateFields($form,$values,$headers,$sepFirst,$sepLast,$wrappers){ |
| 71 | 74 | $wrapper=null; |
| 72 | 75 | $fields=\array_slice($values, $sepFirst+1,$sepLast-$sepFirst); |
@@ -132,12 +135,20 @@ discard block |
||
| 132 | 135 | $this->content[$this->_toolbarPosition]=$this->_toolbar; |
| 133 | 136 | } |
| 134 | 137 | |
| 138 | + /** |
|
| 139 | + * @param integer $index |
|
| 140 | + * @param string $title |
|
| 141 | + */ |
|
| 135 | 142 | public function addDividerBefore($index,$title){ |
| 136 | 143 | $index=$this->_getIndex($index); |
| 137 | 144 | $this->_instanceViewer->addHeaderDividerBefore($index, $title); |
| 138 | 145 | return $this; |
| 139 | 146 | } |
| 140 | 147 | |
| 148 | + /** |
|
| 149 | + * @param string $index |
|
| 150 | + * @param string $contentAfter |
|
| 151 | + */ |
|
| 141 | 152 | public function addWrapper($index,$contentBefore,$contentAfter=null){ |
| 142 | 153 | $index=$this->_getIndex($index); |
| 143 | 154 | $this->_instanceViewer->addWrapper($index, $contentBefore,$contentAfter); |