Changeset 3912
- Timestamp:
- 05/03/07 00:39:48 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfThreeColumnLayoutHelperPlugin/lib/helper/ThreeColumnLayoutHelper.php
r3768 r3912 171 171 } 172 172 173 /** 174 * Move Layout Slot 175 * 176 * Move contents of one layout slot to another 177 * 178 * @param mixed $fromColumn 179 * @param mixed $fromNum 180 * @param mixed $toColumn 181 * @param mixed $toNum 182 * @access public 183 * @return void 184 */ 173 185 function move_layout_slot($fromColumn, $fromNum, $toColumn, $toNum) 174 186 { … … 178 190 } 179 191 192 /** 193 * Copy Layout Slot 194 * 195 * Copy contents of one layout slot to another 196 * 197 * @param mixed $fromColumn 198 * @param mixed $fromNum 199 * @param mixed $toColumn 200 * @param mixed $toNum 201 * @access public 202 * @return void 203 */ 180 204 function copy_layout_slot($fromColumn, $fromNum, $toColumn, $toNum) 181 205 { … … 198 222 return $column.'_column_slot_'.$num; 199 223 } 200 ?>