Changeset 12681
- Timestamp:
- 06/29/2023 04:09:57 AM (19 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-manager.php
r12175 r12681 25 25 add_action( 'plugin_directory_translation_sync', array( __NAMESPACE__ . '\Translation_Sync', 'cron_trigger' ) ); 26 26 add_action( 'plugin_directory_zip_cleanup', array( __NAMESPACE__ . '\Zip_Cleanup', 'cron_trigger' ) ); 27 add_action( 'plugin_directory_daily_post_checks', array( __NAMESPACE__ . '\Daily_Post_Checks', 'cron_trigger' ) ); 27 28 28 29 // A cronjob to check cronjobs … … 263 264 wp_schedule_event( time() + 60, 'daily', 'plugin_directory_zip_cleanup' ); 264 265 } 266 if ( ! wp_next_scheduled ( 'plugin_directory_daily_post_checks' ) ) { 267 wp_schedule_event( time() + 60, 'daily', 'plugin_directory_daily_post_checks' ); 268 } 265 269 266 270 // Check to see if `WP_CORE_LATEST_RELEASE` has changed since we last ran.
Note: See TracChangeset
for help on using the changeset viewer.