Changeset 2017282
- Timestamp:
- 01/23/2019 02:23:21 AM (7 years ago)
- Location:
- wp-dashboard/trunk
- Files:
-
- 6 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.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
r1809618 r2017282 19 19 <div class="column"> 20 20 <h1 class="title"> 21 WP Dashboard 21 WP Dashboard<span style="font-size: 18px;"> - V2.0 Coming Soon! Not updating WILL disconnect the site!</span> 22 22 </h1> 23 23 </div> -
wp-dashboard/trunk/includes/class-wpdashboard-activator.php
r1894854 r2017282 38 38 } 39 39 } 40 if (! wp_next_scheduled ( 'wpdashboard_send_updates_available', [] )) {41 wp_schedule_event( time(), 'hourly', 'wpdashboard_send_updates_available', [] );42 }43 40 } 44 41 -
wp-dashboard/trunk/includes/class-wpdashboard-deactivator.php
r1894854 r2017282 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' );45 43 } 46 44 -
wp-dashboard/trunk/includes/class-wpdashboard.php
r1847202 r2017282 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';129 124 130 125 /** … … 193 188 194 189 /** 195 * Register all of the hooks related to the API, and for the webhooks. 190 * Register all of the hooks related to the admin area functionality 191 * of the plugin. 196 192 * 197 193 * @since 1.0.0 … … 206 202 $this->loader->add_action( 'parse_request', $plugin_api, 'detect_redirects' ); 207 203 208 $webhook_api = new Wpdashboard_WebHooks( $this->get_plugin_name(), $this->get_version() );209 210 $webhook_api->init();211 212 204 } 213 205 -
wp-dashboard/trunk/readme.txt
r1847202 r2017282 4 4 Tags: wpdashboard, wp, dashboard, manage, updates, plugins, wpdash, dash 5 5 Requires at least: 3.0.1 6 Tested up to: 4.9.16 Tested up to: 5.0.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.1.1 88 Stable tag: 1.1.19 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 * SMS Notifications 41 Get important information about your site in real time via SMS. 42 43 * Slack Notifications (coming soon) 40 * Slack (coming soon) 44 41 See 404 errors as they happen, when your site has visit spikes, or broken links. Get notified instantly. 45 42 43 * More coming soon 46 44 47 App coming soon to iOS! Android in Q3 of 2018, get notifications straight to your phone, and manage your sites in one place. 45 48 46 49 47 … … 57 55 == Changelog == 58 56 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 57 = 1.1.19 = 58 * Added warning about V2.0 68 59 69 60 = 1.1.18 = -
wp-dashboard/trunk/wpdashboard.php
r1894854 r2017282 17 17 * Plugin URI: https://wpdashboard.io 18 18 * Description: Manage your Wordpress installations in one place. 19 * Version: 1.1.1 819 * Version: 1.1.19 20 20 * Author: WP Dashboard 21 21 * Author URI: https://wpdashboard.io … … 31 31 } 32 32 33 define( 'WP_DASHBOARD_VERSION', '1.1.1 8' );33 define( 'WP_DASHBOARD_VERSION', '1.1.19' ); 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';62 61 63 62 /** … … 75 74 $plugin->run(); 76 75 77 add_action( 'wpdashboard_send_updates_available', 'wpdashboard_send_updates_available_now', 10, 2 );78 79 76 } 80 77 … … 85 82 } 86 83 87 function wpdashboard_send_updates_available_now($args_1, $args_2 ) {88 WpDashboard_Updates::send();89 }90 91 84 run_wpdashboard();
Note: See TracChangeset
for help on using the changeset viewer.