├── .github └── FUNDING.yml ├── README.md ├── assets ├── profiler.css └── profiler.js ├── hook-profiler.php ├── inc ├── class-callback-wrapper.php ├── class-hook-profiler-engine.php └── class-plugin-detector.php ├── mu-plugin └── aaaaa-hook-profiler-plugin-timing.php.txt └── views └── debug-panel.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: superdav42 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/README.md -------------------------------------------------------------------------------- /assets/profiler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/assets/profiler.css -------------------------------------------------------------------------------- /assets/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/assets/profiler.js -------------------------------------------------------------------------------- /hook-profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/hook-profiler.php -------------------------------------------------------------------------------- /inc/class-callback-wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/inc/class-callback-wrapper.php -------------------------------------------------------------------------------- /inc/class-hook-profiler-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/inc/class-hook-profiler-engine.php -------------------------------------------------------------------------------- /inc/class-plugin-detector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/inc/class-plugin-detector.php -------------------------------------------------------------------------------- /mu-plugin/aaaaa-hook-profiler-plugin-timing.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/mu-plugin/aaaaa-hook-profiler-plugin-timing.php.txt -------------------------------------------------------------------------------- /views/debug-panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multisite-Ultimate/hook-profiler/HEAD/views/debug-panel.php --------------------------------------------------------------------------------