Function Module_admin_cns_customprofilefields->change_order
Definitions
adminzone/pages/modules/admin_cns_customprofilefields.php
- Change the order of a Custom Profile Field.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $id | AUTO_LINK | No | No | required parameter | N/A | N/A | The ID |
| $old_order | integer | No | No | required parameter | N/A | N/A | Old order |
| $new_order | integer | No | No | required parameter | N/A | N/A | New order |
Preview
Code (PHP)
/**
* Change the order of a Custom Profile Field.
*
* @param AUTO_LINK $id The ID
* @param integer $old_order Old order
* @param integer $new_order New order
*/
public function change_order(int $id, int $old_order, int $new_order)
* Change the order of a Custom Profile Field.
*
* @param AUTO_LINK $id The ID
* @param integer $old_order Old order
* @param integer $new_order New order
*/
public function change_order(int $id, int $old_order, int $new_order)
