| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
| 3 |
|
| 4 |
/** |
| 5 |
* Trigger a hook that should happen before a media is deleted. |
| 6 |
* |
| 7 |
* @since 1.9 |
| 8 |
* @author Grégory Viguier |
| 9 |
* |
| 10 |
* @param ProcessInterface $process An optimization process. |
| 11 |
*/ |
| 12 |
function imagify_trigger_delete_media_hook( $process ) { |
| 13 |
/** |
| 14 |
* Triggered bifore a media is deleted. |
| 15 |
* |
| 16 |
* @since 1.9 |
| 17 |
* @author Grégory Viguier |
| 18 |
* |
| 19 |
* @param ProcessInterface $process An optimization process. |
| 20 |
*/ |
| 21 |
do_action( 'imagify_delete_media', $process ); |
| 22 |
} |
| 23 |
|