GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-plugin-hooks-query-monitor.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Add Query Monitor customizations
4  *
5  * @file class-gravityview-plugin-hooks-query-monitor.php
6  * @package GravityView
7  * @license GPL2+
8  * @author GravityView <[email protected]>
9  * @link http://gravityview.co
10  * @copyright Copyright 2015, Katz Web Services, Inc.
11  *
12  * @since 1.16.5
13  */
14 
15 /**
16  * @inheritDoc
17  * @since 2.0
18  */
20 
21  /**
22  * @since 2.0
23  */
24  protected $class_name = 'QueryMonitor';
25 
26  /**
27  * @since 2.0
28  */
29  protected $script_handles = array(
30  'query-monitor'
31  );
32 
33  /**
34  * @since 2.0
35  */
36  protected $style_handles = array(
37  'query-monitor'
38  );
39 
40 }
41 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...