After Delete
apply_filters( 'vikrestaurants_after_delete_{$type}', bool $status, int $id, JTable $table )
Fires after deleting a record.
Description
Trigger hook to allow the plugins to make something after deleting a record from the database. Contrarily to vikrestaurants_before_delete_{$type}
hook, this one triggers once for each ID to delete.
The dynamic portion of the hook name, $type
, refers to the name of the table calling the hook. This means that, for example, the room table will trigger an hook called vikrestaurants_after_delete_room
. The name of the table is always equals to the base name of the file that declares the $table
instance.
It is possible to read a list of supported types by looking at the files stored within the following directory:
/wp-content/plugins/vikrestaurants/admin/tables/
Parameters
- $status
-
(bool) True on success, false otherwise.
- $id
-
(int) The ID of the deleted record.
- $table
-
(JTable) The table instance that handles the saving process.
Example
/**
* Trigger hook to allow the plugins to make something after deleting
* a record from the database.
*
* @param bool $status True on success, false otherwise.
* @param int $id The ID of the deleted record.
* @param JTable $table The table instance.
*/
add_filter('vikrestaurants_after_delete_{$type}', function($status, $id, $table) {
/**
* @todo do something after deleting a record
*/
return $status;
}, 10, 3);
Changelog
Version | Description |
---|---|
1.3 | Introduced. |