GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-plugin-hooks-gravity-forms.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Add Gravity Forms 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  public $class_name = 'GFForms';
22 
23  /**
24  * @inheritDoc
25  * @since 1.15.2
26  */
27  protected $style_handles = array(
28  'gform_tooltip',
29  'gform_font_awesome',
30  'gform_admin_icons',
31  );
32 
33  /**
34  * @inheritDoc
35  * @since 1.15.2
36  */
37  protected $script_handles = array(
38  'gform_tooltip_init',
39  'gform_field_filter',
40  'gform_forms',
41  );
42 
43 }
44 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...