Changeset 2733232
- Timestamp:
- 05/28/2022 06:04:51 PM (4 years ago)
- Location:
- api-fetch-twitter
- Files:
-
- 6 edited
-
tags/1.0.0/README.txt (modified) (1 diff)
-
tags/1.0.0/admin/class-api-fetch-twitter-admin.php (modified) (1 diff)
-
tags/1.0.0/includes/class-api-fetch-twitter-deactivator.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/admin/class-api-fetch-twitter-admin.php (modified) (1 diff)
-
trunk/includes/class-api-fetch-twitter-deactivator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
api-fetch-twitter/tags/1.0.0/README.txt
r2695598 r2733232 4 4 Tags: api, twitter 5 5 Requires at least: 5.0.0 6 Tested up to: 5.9.26 Tested up to: 6.0.0 7 7 Stable tag: 1.0.0 8 8 License: GPLv2 or later -
api-fetch-twitter/tags/1.0.0/admin/class-api-fetch-twitter-admin.php
r2695050 r2733232 77 77 } 78 78 79 /**79 /** 80 80 * Add menu to WordPress admin. 81 81 * -
api-fetch-twitter/tags/1.0.0/includes/class-api-fetch-twitter-deactivator.php
r2695050 r2733232 1 1 <?php 2 3 2 /** 4 3 * Fired during plugin deactivation … … 24 23 25 24 /** 26 * Short Description. (use period) 27 * 28 * Long Description. 25 * Fired on deactivation. 29 26 * 30 27 * @since 1.0.0 31 28 */ 32 29 public static function deactivate() { 33 $timestamp = wp_nex cheduled( 'api_fetch_twitter_cron' );30 $timestamp = wp_next_scheduled( 'api_fetch_twitter_cron' ); 34 31 wp_unschedule_event( $timestamp, 'api_fetch_twitter_cron' ); 35 32 } -
api-fetch-twitter/trunk/README.txt
r2695598 r2733232 4 4 Tags: api, twitter 5 5 Requires at least: 5.0.0 6 Tested up to: 5.9.26 Tested up to: 6.0.0 7 7 Stable tag: 1.0.0 8 8 License: GPLv2 or later -
api-fetch-twitter/trunk/admin/class-api-fetch-twitter-admin.php
r2695053 r2733232 77 77 } 78 78 79 /**79 /** 80 80 * Add menu to WordPress admin. 81 81 * -
api-fetch-twitter/trunk/includes/class-api-fetch-twitter-deactivator.php
r2695053 r2733232 1 1 <?php 2 3 2 /** 4 3 * Fired during plugin deactivation … … 24 23 25 24 /** 26 * Short Description. (use period) 27 * 28 * Long Description. 25 * Fired on deactivation. 29 26 * 30 27 * @since 1.0.0 31 28 */ 32 29 public static function deactivate() { 33 $timestamp = wp_nex cheduled( 'api_fetch_twitter_cron' );30 $timestamp = wp_next_scheduled( 'api_fetch_twitter_cron' ); 34 31 wp_unschedule_event( $timestamp, 'api_fetch_twitter_cron' ); 35 32 }
Note: See TracChangeset
for help on using the changeset viewer.