Function Name:&important_style
Declaration:
public static function &important_style( $important, $field )
Basic usage:
$important = FrmStylesController::&important_style( $important, $field )
In class:
Location:
formidable/classes/controllers/FrmStylesController.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