1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
<?php
namespace SIW;
class Update {
public static function init() {
$self = new self();
add_action( 'wppusher_plugin_was_updated', [ $self, 'schedule_plugin_update_hook' ] );
add_action( 'siw_update_plugin', [ $self, 'flush_rewrite_rules' ] );
}
public function schedule_plugin_update_hook() {
wp_schedule_single_event( time(), 'siw_update_plugin' );
}
public function flush_rewrite_rules() {
flush_rewrite_rules();
}
}