GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-plugin-hooks-debug-bar.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Add Debug Bar scripts and styles to GravityView no-conflict list
4  *
5  * @file class-gravityview-plugin-hooks-gravity-forms.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.15.2
13  */
14 
15 /**
16  * @inheritDoc
17  * @since 1.15.2
18  */
20 
21  /**
22  * @inheritDoc
23  * @since 1.15.2
24  */
25  protected $class_name = 'Debug_Bar';
26 
27  /**
28  * @inheritDoc
29  * @since 1.15.2
30  */
31  protected $style_handles = array(
32  'debug-bar-extender',
33  'debug-bar',
34  'debug-bar-codemirror',
35  'debug-bar-console',
36  'puc-debug-bar-style',
37  );
38 
39  /**
40  * @inheritDoc
41  * @since 1.15.2
42  */
43  protected $script_handles = array(
44  'debug-bar-extender',
45  'debug-bar',
46  'debug-bar-codemirror',
47  'debug-bar-console',
48  'puc-debug-bar-js',
49  );
50 }
51 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...