Development

Changeset 3912

You must first sign up to be able to contribute.

Changeset 3912

Show
Ignore:
Timestamp:
05/03/07 00:39:48 (6 years ago)
Author:
Jonathan.Wage
Message:

sfThreeColumnLayoutHelper?: Added documentation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfThreeColumnLayoutHelperPlugin/lib/helper/ThreeColumnLayoutHelper.php

    r3768 r3912  
    171171} 
    172172 
     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 */ 
    173185function move_layout_slot($fromColumn, $fromNum, $toColumn, $toNum) 
    174186{ 
     
    178190} 
    179191 
     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 */ 
    180204function copy_layout_slot($fromColumn, $fromNum, $toColumn, $toNum) 
    181205{ 
     
    198222  return $column.'_column_slot_'.$num; 
    199223} 
    200 ?>