Caleb Stauffer

Results 141 issues of 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 ); ```

PR #217 (fix for #213) was impacted by support for suppressed errors in fix for #175; this PR rectifies the two.

awaiting verification

implements feature request in #110 ![screen shot 2016-07-22 at 4 16 57 pm](https://cloud.githubusercontent.com/assets/4573033/17070434/e64d88be-5029-11e6-967b-bc178ea32c88.png)

type:enhancement
output:html
collector:assets

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`): ![screen shot 2016-08-04 at 9 36 08 pm](https://cloud.githubusercontent.com/assets/4573033/17423759/84e59852-5a8b-11e6-95f5-d2c6e8b83d74.png) The simple solution is just to add a space...

type:bug
output:html

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 );...