Changeset 8486 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-dashboard.php
- Timestamp:
- 03/21/2019 09:50:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-dashboard.php
r8329 r8486 13 13 14 14 } elseif ( defined( 'DOING_CRON' ) ) { 15 add_action( 'wcbdsi_check_for_paid_invoices', __NAMESPACE__ . '\check_for_paid_invoices' );15 // add_action( 'wcbdsi_check_for_paid_invoices', __NAMESPACE__ . '\check_for_paid_invoices' ); 16 16 add_action( 'save_post', __NAMESPACE__ . '\update_index_row', 10, 2 ); 17 add_action( 'plugins_loaded', __NAMESPACE__ . '\schedule_sent_invoice_reminder' );17 // add_action( 'plugins_loaded', __NAMESPACE__ . '\schedule_sent_invoice_reminder' ); 18 18 19 19 } elseif ( is_network_admin() ) { 20 add_action( 'plugins_loaded', __NAMESPACE__ . '\schedule_cron_events' );20 // add_action( 'plugins_loaded', __NAMESPACE__ . '\schedule_cron_events' ); 21 21 add_action( 'network_admin_menu', __NAMESPACE__ . '\register_submenu_page' ); 22 22 add_action( 'init', __NAMESPACE__ . '\upgrade_database' ); … … 37 37 } 38 38 39 wp_schedule_event( current_time( 'timestamp' ), 'hourly', 'wcbdsi_check_for_paid_invoices' );39 // wp_schedule_event( current_time( 'timestamp' ), 'hourly', 'wcbdsi_check_for_paid_invoices' ); 40 40 } 41 41
Note: See TracChangeset
for help on using the changeset viewer.