Changeset 3498317
- Timestamp:
- 04/03/2026 02:53:01 PM (34 hours ago)
- Location:
- codetelemetrylab-admin-performance-inspector/trunk
- Files:
-
- 8 edited
-
README.txt (modified) (3 diffs)
-
codetelemetrylab-admin-performance-inspector.php (modified) (5 diffs)
-
includes/class-admin-performance-inspector-i18n.php (modified) (3 diffs)
-
includes/class-admin-performance-inspector-loader.php (modified) (8 diffs)
-
includes/class-admin-performance-inspector.php (modified) (16 diffs)
-
public/class-admin-performance-inspector-public.php (modified) (6 diffs)
-
public/partials/admin-performance-inspector-public-display.php (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
codetelemetrylab-admin-performance-inspector/trunk/README.txt
r3497801 r3498317 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 132 132 == Changelog == 133 133 134 = 1.0.1 = 135 * Updated Author URI to company website. 136 * Updated Plugin URI to company website. 137 * Updated Contributors to company account. 138 139 134 140 = 1.0.0 = 135 141 * Initial release of CodeTelemetryLab Admin Performance Inspector. … … 146 152 == Upgrade Notice == 147 153 154 = 1.0.1 = 155 Maintenance update. No functional changes. 156 157 148 158 = 1.0.0 = 149 159 Initial release of CodeTelemetryLab Admin Performance Inspector. Activate and navigate to Tools → Admin Performance Inspector to begin profiling your WordPress admin performance. -
codetelemetrylab-admin-performance-inspector/trunk/codetelemetrylab-admin-performance-inspector.php
r3497815 r3498317 10 10 * 11 11 * @link https://codetelemetrylab.vercel.app 12 * @since 1.0. 012 * @since 1.0.1 13 13 * @package Codeadpe_Core 14 14 * … … 16 16 * Plugin URI: https://codetelemetrylab.vercel.app/plugins 17 17 * Description: Profiling tool for WordPress admin page performance. Analyze plugins, hooks, queries, and memory usage. 18 * Version: 1.0. 018 * Version: 1.0.1 19 19 * Author: CodeTelemetryLab 20 20 * Author URI: https://codetelemetrylab.vercel.app … … 23 23 * Text Domain: codetelemetrylab-admin-performance-inspector 24 24 * Domain Path: /languages 25 * Contributors: codetelemetrylab26 25 */ 27 26 … … 41 40 * Rename this for your plugin and update it as you release new versions. 42 41 */ 43 define( 'CODEADPE_VERSION', '1.0. 0' );42 define( 'CODEADPE_VERSION', '1.0.1' ); 44 43 45 44 /** … … 77 76 * not affect the page life cycle. 78 77 * 79 * @since 1.0.078 * @since 1.0.1 80 79 */ 81 80 function codeadpe_run() { -
codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector-i18n.php
r3497801 r3498317 12 12 * 13 13 * @link https://codetelemetrylab.vercel.app 14 * @since 1.0.014 * @since 1.0.1 15 15 * 16 16 * @package Codeadpe_Core … … 24 24 * so that it is ready for translation. 25 25 * 26 * @since 1.0.026 * @since 1.0.1 27 27 * @package Codeadpe_Core 28 28 * @subpackage Codeadpe_Core/includes … … 35 35 * Load the plugin text domain for translation. 36 36 * 37 * @since 1.0.037 * @since 1.0.1 38 38 */ 39 39 public function load_plugin_textdomain() { -
codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector-loader.php
r3497801 r3498317 9 9 * 10 10 * @link https://codetelemetrylab.vercel.app 11 * @since 1.0.011 * @since 1.0.1 12 12 * 13 13 * @package Codeadpe_Core … … 31 31 * The array of actions registered with WordPress. 32 32 * 33 * @since 1.0.033 * @since 1.0.1 34 34 * @access protected 35 35 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 40 40 * The array of filters registered with WordPress. 41 41 * 42 * @since 1.0.042 * @since 1.0.1 43 43 * @access protected 44 44 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 49 49 * Initialize the collections used to maintain the actions and filters. 50 50 * 51 * @since 1.0.051 * @since 1.0.1 52 52 */ 53 53 public function __construct() { … … 61 61 * Add a new action to the collection to be registered with WordPress. 62 62 * 63 * @since 1.0.063 * @since 1.0.1 64 64 * @param string $hook The name of the WordPress action that is being registered. 65 65 * @param object $component A reference to the instance of the object on which the action is defined. … … 75 75 * Add a new filter to the collection to be registered with WordPress. 76 76 * 77 * @since 1.0.077 * @since 1.0.1 78 78 * @param string $hook The name of the WordPress filter that is being registered. 79 79 * @param object $component A reference to the instance of the object on which the filter is defined. … … 90 90 * collection. 91 91 * 92 * @since 1.0.092 * @since 1.0.1 93 93 * @access private 94 94 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 117 117 * Register the filters and actions with WordPress. 118 118 * 119 * @since 1.0.0119 * @since 1.0.1 120 120 */ 121 121 public function run() { -
codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector.php
r3497801 r3498317 12 12 * 13 13 * @link https://codetelemetrylab.vercel.app 14 * @since 1.0.014 * @since 1.0.1 15 15 * 16 16 * @package Codeadpe_Core … … 27 27 * version of the plugin. 28 28 * 29 * @since 1.0.029 * @since 1.0.1 30 30 * @package Codeadpe_Core 31 31 * @subpackage Codeadpe_Core/includes … … 38 38 * the plugin. 39 39 * 40 * @since 1.0.040 * @since 1.0.1 41 41 * @access protected 42 42 * @var Codeadpe_Loader $loader Maintains and registers all hooks for the plugin. … … 47 47 * The unique identifier of this plugin. 48 48 * 49 * @since 1.0.049 * @since 1.0.1 50 50 * @access protected 51 51 * @var string $plugin_name The string used to uniquely identify this plugin. … … 56 56 * The current version of the plugin. 57 57 * 58 * @since 1.0.058 * @since 1.0.1 59 59 * @access protected 60 60 * @var string $version The current version of the plugin. … … 65 65 * The profiler object. 66 66 * 67 * @since 1.0.067 * @since 1.0.1 68 68 * @access protected 69 69 */ … … 77 77 * the public-facing side of the site. 78 78 * 79 * @since 1.0.079 * @since 1.0.1 80 80 */ 81 81 public function __construct() { … … 83 83 $this->version = CODEADPE_VERSION; 84 84 } else { 85 $this->version = '1.0. 0';85 $this->version = '1.0.1'; 86 86 } 87 87 $this->plugin_name = 'codetelemetrylab-admin-performance-inspector'; … … 107 107 * with WordPress. 108 108 * 109 * @since 1.0.0109 * @since 1.0.1 110 110 * @access private 111 111 */ … … 151 151 * with WordPress. 152 152 * 153 * @since 1.0.0153 * @since 1.0.1 154 154 * @access private 155 155 */ … … 166 166 * of the plugin. 167 167 * 168 * @since 1.0.0168 * @since 1.0.1 169 169 * @access private 170 170 */ … … 183 183 * of the plugin. 184 184 * 185 * @since 1.0.0185 * @since 1.0.1 186 186 * @access private 187 187 */ … … 198 198 * Run the loader to execute all of the hooks with WordPress. 199 199 * 200 * @since 1.0.0200 * @since 1.0.1 201 201 */ 202 202 public function run() { … … 208 208 * WordPress and to define internationalization functionality. 209 209 * 210 * @since 1.0.0210 * @since 1.0.1 211 211 * @return string The name of the plugin. 212 212 */ … … 218 218 * The reference to the class that orchestrates the hooks with the plugin. 219 219 * 220 * @since 1.0.0220 * @since 1.0.1 221 221 * @return Codeadpe_Loader Orchestrates the hooks of the plugin. 222 222 */ … … 228 228 * Retrieve the version number of the plugin. 229 229 * 230 * @since 1.0.0230 * @since 1.0.1 231 231 * @return string The version number of the plugin. 232 232 */ -
codetelemetrylab-admin-performance-inspector/trunk/public/class-admin-performance-inspector-public.php
r3497801 r3498317 9 9 * 10 10 * @link https://codetelemetrylab.vercel.app 11 * @since 1.0.011 * @since 1.0.1 12 12 * 13 13 * @package Codeadpe_Core … … 30 30 * The ID of this plugin. 31 31 * 32 * @since 1.0.032 * @since 1.0.1 33 33 * @access private 34 34 * @var string $plugin_name The ID of this plugin. … … 39 39 * The version of this plugin. 40 40 * 41 * @since 1.0.041 * @since 1.0.1 42 42 * @access private 43 43 * @var string $version The current version of this plugin. … … 48 48 * Initialize the class and set its properties. 49 49 * 50 * @since 1.0.050 * @since 1.0.1 51 51 * @param string $plugin_name The name of the plugin. 52 52 * @param string $version The version of this plugin. … … 62 62 * Register the stylesheets for the public-facing side of the site. 63 63 * 64 * @since 1.0.064 * @since 1.0.1 65 65 */ 66 66 public function enqueue_styles() { … … 85 85 * Register the JavaScript for the public-facing side of the site. 86 86 * 87 * @since 1.0.087 * @since 1.0.1 88 88 */ 89 89 public function enqueue_scripts() { -
codetelemetrylab-admin-performance-inspector/trunk/public/partials/admin-performance-inspector-public-display.php
r3497801 r3498317 11 11 * 12 12 * @link https://codetelemetrylab.vercel.app 13 * @since 1.0.013 * @since 1.0.1 14 14 * 15 15 * @package Codeadpe_Core -
codetelemetrylab-admin-performance-inspector/trunk/uninstall.php
r3497801 r3498317 5 5 * 6 6 * @link https://codetelemetrylab.vercel.app 7 * @since 1.0.07 * @since 1.0.1 8 8 * 9 9 * @package Codeadpe_Core
Note: See TracChangeset
for help on using the changeset viewer.