Caleb Stauffer
Caleb Stauffer
Added QM's profiling to rendering of a features comparison table, and received some negative values for memory, which I think is probably not correct?
Implement #405. Sample test code: ```php add_action( 'init', function() { do_action( 'qm/listen/start', 'test' ); }, 2 ); add_action( 'init', function() { do_action( 'qm/listen/stop', 'test' ); }, 6 ); ```
Closes #309.
PR #217 (fix for #213) was impacted by support for suppressed errors in fix for #175; this PR rectifies the two.
implements feature request in #110 
Using the `qm/output/file_link_format` described in #422 works, but the _Editor_ section of the _Settings_ panel does not reflect this setting, when it probably should...? Not sure if the dropdown value...
Perfect example is Query Monitor (`Plugin: query-monitor`) and Query Monitor Extend (`Plugin: query-monitor-extend`):  The simple solution is just to add a space...
I just now reorganized QMX to be as similar to QM as I can manage, which means [hooking into `qm/output/absolute_position` filter](https://github.com/crstauf/query-monitor-extend/commit/09740b08ef77f30871bbfb14b2a2b2b97aa47c9d#diff-2554c9b63c87f8e0796deeff2f452af9R29) to include the necessary files, which, while it works,...
Implement hook discovery into QM (as [discussed on Twitter](https://twitter.com/crstauf/status/1095678041802579968)). Thinking something like the following: ```php do_action( 'qm/listen/start', 'label' ); ... do_action( 'foobar' ); ... $foo = apply_filters( 'bar', 0 );...