Changeset 2017285
- Timestamp:
- 01/23/2019 02:26:50 AM (7 years ago)
- Location:
- wp-dashboard/trunk
- Files:
-
- 7 edited
-
admin/partials/wpdashboard-admin-partial-header.php (modified) (1 diff)
-
includes/class-wpdashboard-activator.php (modified) (1 diff)
-
includes/class-wpdashboard-deactivator.php (modified) (1 diff)
-
includes/class-wpdashboard-updates.php (modified) (1 diff)
-
includes/class-wpdashboard.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
wpdashboard.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dashboard/trunk/admin/partials/wpdashboard-admin-partial-header.php
r2017282 r2017285 19 19 <div class="column"> 20 20 <h1 class="title"> 21 WP Dashboard <span style="font-size: 18px;"> - V2.0 Coming Soon! Not updating WILL disconnect the site!</span>21 WP Dashboard 22 22 </h1> 23 23 </div> -
wp-dashboard/trunk/includes/class-wpdashboard-activator.php
r2017282 r2017285 38 38 } 39 39 } 40 if (! wp_next_scheduled ( 'wpdashboard_send_updates_available', [] )) { 41 wp_schedule_event( time(), 'hourly', 'wpdashboard_send_updates_available', [] ); 42 } 40 43 } 41 44 -
wp-dashboard/trunk/includes/class-wpdashboard-deactivator.php
r2017282 r2017285 41 41 delete_option('wpdashboard_admin_user'); 42 42 delete_option('wpdashboard_tag_manager_id'); 43 44 wp_clear_scheduled_hook( 'wpdashboard_send_updates_available' ); 43 45 } 44 46 -
wp-dashboard/trunk/includes/class-wpdashboard-updates.php
r1894855 r2017285 40 40 $body['plugins'] = get_plugin_updates(); 41 41 42 wp_die($body); 43 42 44 $result = $client->post('https://my.wpdashboard.io/api/v2/sites/' . self::get_option('api_key') . '/updates', [ 43 45 'body' => $body -
wp-dashboard/trunk/includes/class-wpdashboard.php
r2017282 r2017285 122 122 */ 123 123 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'api/class-wpdashboard-api.php'; 124 125 /** 126 * The class responsible for defining all actions that send webhooks out. 127 */ 128 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'webhooks/class-wpdashboard-webhooks.php'; 124 129 125 130 /** … … 188 193 189 194 /** 190 * Register all of the hooks related to the admin area functionality 191 * of the plugin. 195 * Register all of the hooks related to the API, and for the webhooks. 192 196 * 193 197 * @since 1.0.0 … … 202 206 $this->loader->add_action( 'parse_request', $plugin_api, 'detect_redirects' ); 203 207 208 $webhook_api = new Wpdashboard_WebHooks( $this->get_plugin_name(), $this->get_version() ); 209 210 $webhook_api->init(); 211 204 212 } 205 213 -
wp-dashboard/trunk/readme.txt
r2017282 r2017285 4 4 Tags: wpdashboard, wp, dashboard, manage, updates, plugins, wpdash, dash 5 5 Requires at least: 3.0.1 6 Tested up to: 5.0.36 Tested up to: 4.9.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1.1 98 Stable tag: 1.1.18 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 Connecting HubSpot sets up the tracking script automatically. No configuration required. 39 39 40 * Slack (coming soon) 40 * SMS Notifications 41 Get important information about your site in real time via SMS. 42 43 * Slack Notifications (coming soon) 41 44 See 404 errors as they happen, when your site has visit spikes, or broken links. Get notified instantly. 42 45 43 * More coming soon44 46 45 47 App coming soon to iOS! Android in Q3 of 2018, get notifications straight to your phone, and manage your sites in one place. 46 48 47 49 … … 55 57 == Changelog == 56 58 57 = 1.1.19 = 58 * Added warning about V2.0 59 = 2.0.0 = 60 * Complete re-work of the information gathering! 61 * Moved to Webhook version, no more pounding servers/sites for information! 62 * Information is now updated in real-time on the dashboard 63 * Old version is still in place for those sites NOT upgraded, so no worries! 64 * Gathering more information, and re-working how the plugin's backend works! 65 * Starting implementation of the REST API extension, instead of using our own 66 * Starting implementation of the ability to pack up a site and move it 67 * Bug fixes for PHP 5.6 59 68 60 69 = 1.1.18 = -
wp-dashboard/trunk/wpdashboard.php
r2017282 r2017285 17 17 * Plugin URI: https://wpdashboard.io 18 18 * Description: Manage your Wordpress installations in one place. 19 * Version: 1.1.1 919 * Version: 1.1.18 20 20 * Author: WP Dashboard 21 21 * Author URI: https://wpdashboard.io … … 31 31 } 32 32 33 define( 'WP_DASHBOARD_VERSION', '1.1.1 9' );33 define( 'WP_DASHBOARD_VERSION', '1.1.18' ); 34 34 35 35 /** … … 59 59 */ 60 60 require plugin_dir_path( __FILE__ ) . 'includes/class-wpdashboard.php'; 61 require plugin_dir_path( __FILE__ ) . 'includes/class-wpdashboard-updates.php'; 61 62 62 63 /** … … 74 75 $plugin->run(); 75 76 77 add_action( 'wpdashboard_send_updates_available', 'wpdashboard_send_updates_available_now', 10, 2 ); 78 76 79 } 77 80 … … 82 85 } 83 86 87 function wpdashboard_send_updates_available_now($args_1, $args_2 ) { 88 WpDashboard_Updates::send(); 89 } 90 84 91 run_wpdashboard();
Note: See TracChangeset
for help on using the changeset viewer.