Changeset 3379577
- Timestamp:
- 10/16/2025 03:25:54 PM (2 months ago)
- Location:
- mxp-dev-tools
- Files:
-
- 10 edited
- 1 copied
-
tags/3.3.8 (copied) (copied from mxp-dev-tools/trunk)
-
tags/3.3.8/index.php (modified) (2 diffs)
-
tags/3.3.8/mxp-login-path.php (modified) (1 diff)
-
tags/3.3.8/mxp-site-manager.php (modified) (2 diffs)
-
tags/3.3.8/mxp-snippets.php (modified) (2 diffs)
-
tags/3.3.8/readme.txt (modified) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/mxp-login-path.php (modified) (1 diff)
-
trunk/mxp-site-manager.php (modified) (2 diffs)
-
trunk/mxp-snippets.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mxp-dev-tools/tags/3.3.8/index.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools - Mxp.TW 4 * Plugin URI: https:// goo.gl/2gLq184 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 一介資男の常用外掛整理與常用開發功能整合外掛。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 use SearchReplace; 40 40 use Utility; 41 static $VERSION = '3.3. 7';41 static $VERSION = '3.3.8'; 42 42 private $themeforest_api_base_url = 'https://api.envato.com/v3'; 43 43 protected static $instance = null; -
mxp-dev-tools/tags/3.3.8/mxp-login-path.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Hide Login Page - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 隱藏後台登入位置工具。啟用即更改預設登入網址為 /admin-staff/ 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ -
mxp-dev-tools/tags/3.3.8/mxp-site-manager.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Site Manager - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 管理多個 WordPress 站點的工具。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 class MDTSiteManager { 40 40 public $plugin_slug = 'mdt-site-manager'; 41 public static $VERSION = '3.3. 7';41 public static $VERSION = '3.3.8'; 42 42 43 43 public function __construct() { -
mxp-dev-tools/tags/3.3.8/mxp-snippets.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Snippets - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 1640 1640 1641 1641 public static function cron_scheduled() { 1642 if (MDT_SITE_HEALTH_REPORT_CRON ) {1642 if (MDT_SITE_HEALTH_REPORT_CRON || apply_filters('mxp_dev_site_health_report_cron', false)) { 1643 1643 if (!wp_next_scheduled('mxp_site_health_report_cron')) { 1644 1644 wp_schedule_event(time(), 'mxpdev_2h', 'mxp_site_health_report_cron'); -
mxp-dev-tools/tags/3.3.8/readme.txt
r3343687 r3379577 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.8 8 Stable tag: 3.3. 78 Stable tag: 3.3.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 77 77 78 78 == Changelog == 79 80 = 3.3.8 = 81 82 * 新增 Hook: mxp_dev_site_health_report_cron 讓網站回報的功能配合不同主機權限更彈性運用 79 83 80 84 = 3.3.7 = -
mxp-dev-tools/trunk/index.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools - Mxp.TW 4 * Plugin URI: https:// goo.gl/2gLq184 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 一介資男の常用外掛整理與常用開發功能整合外掛。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 use SearchReplace; 40 40 use Utility; 41 static $VERSION = '3.3. 7';41 static $VERSION = '3.3.8'; 42 42 private $themeforest_api_base_url = 'https://api.envato.com/v3'; 43 43 protected static $instance = null; -
mxp-dev-tools/trunk/mxp-login-path.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Hide Login Page - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 隱藏後台登入位置工具。啟用即更改預設登入網址為 /admin-staff/ 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ -
mxp-dev-tools/trunk/mxp-site-manager.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Site Manager - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 管理多個 WordPress 站點的工具。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 class MDTSiteManager { 40 40 public $plugin_slug = 'mdt-site-manager'; 41 public static $VERSION = '3.3. 7';41 public static $VERSION = '3.3.8'; 42 42 43 43 public function __construct() { -
mxp-dev-tools/trunk/mxp-snippets.php
r3343687 r3379577 2 2 /** 3 3 * Plugin Name: Dev Tools: Snippets - Mxp.TW 4 * Plugin URI: https:// tw.wordpress.org/plugins/mxp-dev-tools/4 * Plugin URI: https://www.mxp.tw/plugins/mxp-dev-tools/ 5 5 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。 6 6 * Requires at least: 4.6 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.8 9 * Stable tag: 3.3. 710 * Version: 3.3. 79 * Stable tag: 3.3.8 10 * Version: 3.3.8 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 1640 1640 1641 1641 public static function cron_scheduled() { 1642 if (MDT_SITE_HEALTH_REPORT_CRON ) {1642 if (MDT_SITE_HEALTH_REPORT_CRON || apply_filters('mxp_dev_site_health_report_cron', false)) { 1643 1643 if (!wp_next_scheduled('mxp_site_health_report_cron')) { 1644 1644 wp_schedule_event(time(), 'mxpdev_2h', 'mxp_site_health_report_cron'); -
mxp-dev-tools/trunk/readme.txt
r3343687 r3379577 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.8 8 Stable tag: 3.3. 78 Stable tag: 3.3.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 77 77 78 78 == Changelog == 79 80 = 3.3.8 = 81 82 * 新增 Hook: mxp_dev_site_health_report_cron 讓網站回報的功能配合不同主機權限更彈性運用 79 83 80 84 = 3.3.7 =
Note: See TracChangeset
for help on using the changeset viewer.