Skip to content

Commit

Permalink
dump hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Nov 4, 2021
1 parent edba3b3 commit 4f0e918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/register-hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
add_action( 'notification/init', [ $this->component( 'core_settings' ), 'register_settings' ], 5, 0 );
add_action( 'admin_init', [ $this->component( 'core_upgrade' ), 'check_upgrade' ], 10, 0 );
add_action( 'notification/init', [ $this->component( 'core_upgrade' ), 'upgrade_db' ], 10, 0 );
add_action( 'notification/init', [ $this->component( 'core_sync' ), 'load_local_json' ], 10, 0 );
add_action( 'notification/init', [ $this->component( 'core_sync' ), 'load_local_json' ], 100, 0 );
add_action( 'notification/data/save/after', [ $this->component( 'core_sync' ), 'save_local_json' ], 10, 1 );
add_action( 'delete_post', [ $this->component( 'core_sync' ), 'delete_local_json' ], 10, 1 );
add_action( 'notification/trigger/registered', [ $this->component( 'core_binder' ), 'bind' ], 100, 1 );
Expand Down

0 comments on commit 4f0e918

Please sign in to comment.