Your cart is empty!
Setup Details
apply_filters( 'vikappointments_setup_customer_details', bool $status, object $customer, object $row )
Fires while setting up the customer details.
Description
External plugins can use this hook to manipulate the object holding the details of the customer. Useful to inject all the additional data fetched with the manipulation of the query.
Parameters
- $status
-
(bool) True on success, false otherwise.
- $customer
-
(object) The object holding the customer details.
- $row
-
(object) The row fetched from the database.
Example
/**
* External plugins can use this event to manipulate the object holding
* the details of the customer. Useful to inject all the additional data
* fetched with the manipulation of the query.
*
* @param boolean $status True on success, false otherwise.
* @param object $customer The customer details.
* @param object $row The row fetched from the database.
*/
add_filter('vikappointments_setup_customer_details', function($status, $customer, $row)
{
/**
* @todo it is possible to load further details here
*/
return $status;
}, 10, 3);
Changelog
Version | Description |
---|---|
1.2 | Introduced. |
Last Update: 2021-10-06
Helpful?