Completed
Push — master ( 71a3fd...24b2b8 )
by Jean-Christophe
03:16
created
Ajax/semantic/widgets/dataform/DataForm.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -128,12 +128,20 @@
 block discarded – undo
128 128
 		$this->content[$this->_toolbarPosition]=$this->_toolbar;
129 129
 	}
130 130
 
131
+	/**
132
+	 * @param integer $index
133
+	 * @param string $title
134
+	 */
131 135
 	public function addDividerBefore($index,$title){
132 136
 		$index=$this->_getIndex($index);
133 137
 		$this->_instanceViewer->addHeaderDividerBefore($index, $title);
134 138
 		return $this;
135 139
 	}
136 140
 
141
+	/**
142
+	 * @param string $index
143
+	 * @param string $contentAfter
144
+	 */
137 145
 	public function addWrapper($index,$contentBefore,$contentAfter=null){
138 146
 		$index=$this->_getIndex($index);
139 147
 		$this->_instanceViewer->addWrapper($index, $contentBefore,$contentAfter);
Please login to merge, or discard this patch.