Function Name:&label_position
Declaration:
public static function &label_position( $position, $field, $form )
Basic usage:
$position = FrmFieldsHelper::&label_position( $position, $field, $form )
In class:
Location:
formidable/classes/helpers/FrmFieldsHelper.php
Pro function:
No
Notes:
An ampersand before a function name means the function will return a reference to a variable instead of the value. Returning by reference is useful when you want to use a function to find to which variable a reference should be bound. Do not use return-by-reference to increase performance.
Contribute Comments or Examples
No Entries Found