Changeset 3203360
- Timestamp:
- 12/06/2024 02:56:51 AM (13 months ago)
- Location:
- mxp-dev-tools
- Files:
-
- 5 edited
- 8 copied
-
tags/3.3.4 (copied) (copied from mxp-dev-tools/trunk)
-
tags/3.3.4/includes/class_plugins_list_table.php (copied) (copied from mxp-dev-tools/trunk/includes/class_plugins_list_table.php)
-
tags/3.3.4/includes/hooks-usage.php (copied) (copied from mxp-dev-tools/trunk/includes/hooks-usage.php)
-
tags/3.3.4/index.php (copied) (copied from mxp-dev-tools/trunk/index.php) (2 diffs)
-
tags/3.3.4/mxp-login-path.php (copied) (copied from mxp-dev-tools/trunk/mxp-login-path.php) (1 diff)
-
tags/3.3.4/mxp-site-manager.php (copied) (copied from mxp-dev-tools/trunk/mxp-site-manager.php) (2 diffs)
-
tags/3.3.4/mxp-snippets.php (copied) (copied from mxp-dev-tools/trunk/mxp-snippets.php) (4 diffs)
-
tags/3.3.4/readme.txt (copied) (copied from mxp-dev-tools/trunk/readme.txt) (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) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mxp-dev-tools/tags/3.3.4/index.php
r3191759 r3203360 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 310 * Version: 3.3. 39 * Stable tag: 3.3.4 10 * Version: 3.3.4 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. 3';41 static $VERSION = '3.3.4'; 42 42 private $themeforest_api_base_url = 'https://api.envato.com/v3'; 43 43 protected static $instance = null; -
mxp-dev-tools/tags/3.3.4/mxp-login-path.php
r3191759 r3203360 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 310 * Version: 3.3. 39 * Stable tag: 3.3.4 10 * Version: 3.3.4 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ -
mxp-dev-tools/tags/3.3.4/mxp-site-manager.php
r3191759 r3203360 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 310 * Version: 3.3. 39 * Stable tag: 3.3.4 10 * Version: 3.3.4 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. 3';41 public static $VERSION = '3.3.4'; 42 42 43 43 public function __construct() { -
mxp-dev-tools/tags/3.3.4/mxp-snippets.php
r3191759 r3203360 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 310 * Version: 3.3. 39 * Stable tag: 3.3.4 10 * Version: 3.3.4 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 204 204 define('MDT_BASIC_AUTH_ERROR_DISPLAY_TEXT', 'Authorization Required. 需要授權才能查看內容。'); 205 205 } 206 // Basic Authentication 登入功能暫時關閉的 GET param 參數鍵值名 207 if (! defined("MDT_BASIC_AUTH_BYPASS_KEY")) { 208 define('MDT_BASIC_AUTH_BYPASS_KEY', 'passkey'); 209 } 210 // Basic Authentication 登入功能暫時關閉的時間預設一個月 211 if (! defined("MDT_BASIC_AUTH_BYPASS_IN_SECONDS")) { 212 define('MDT_BASIC_AUTH_BYPASS_IN_SECONDS', MONTH_IN_SECONDS); 213 } 214 206 215 class MDTSnippets { 207 216 public function __construct() { … …