Your cart is empty!
After Save
apply_filters( 'vikappointments_after_save_review', bool $status, array $data, bool $isNew, JTable $table )
Fires after saving a review.
Description
This hook is triggered after creating or updating a review record.
Parameters
- $status
-
(bool) True on success, false otherwise.
- $data
-
(array) The properties of the review that have been saved.
- $isNew
-
(bool) True in case the review has been created, false in case an existing review was updated.
- $model
-
(JTable) The table instance that handles the saving process.
Example
/**
* Trigger hook to allow the plugins to make something after
* saving a review.
*
* @param boolean $status True on success, false otherwise.
* @param mixed $data The saved record.
* @param boolean $isNew True if new, false in case of update.
* @param JTable $table The table instance.
*/
add_filter('vikappointments_after_save_review', function($status, $data, $isNew, $table)
{
/**
* @todo do something after saving a review
*/
return $status;
}, 10, 4);
Changelog
Version | Description |
---|---|
1.2 | Introduced. |
Last Update: 2021-10-04
Helpful?