GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-theme-hooks-avada.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Add Avada Theme compatibility to GravityView, including registering scripts and styles to GravityView no-conflict list
4  *
5  * @file class-gravityview-theme-hooks-avada.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 $function_name = 'avada_scripts';
26 
27  /**
28  * @inheritDoc
29  * @since 1.15.2
30  */
31  protected $content_meta_keys = array(
32  'sbg_selected_sidebar',
33  );
34 
35  /**
36  * @inheritDoc
37  * @since 1.15.2
38  */
39  protected $script_handles = array(
40  'jquery.biscuit',
41  'avada_upload',
42  'tipsy',
43  'jquery-ui-slider',
44  'smof',
45  'cookie',
46  'kd-multiple-featured-images',
47  );
48 }
49 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...