GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-theme-hooks-genesis.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Add Genesis Framework compatibility to GravityView, including registering scripts and styles to GravityView no-conflict list
4  *
5  * @file class-gravityview-theme-hooks-genesis.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 = 'genesis';
26 
27  /**
28  * @inheritDoc
29  * @since 1.15.2
30  */
31  protected $script_handles = array(
32  'genesis_admin_js',
33  );
34 
35  /**
36  * @inheritDoc
37  * @since 1.15.2
38  */
39  protected $style_handles = array(
40  'genesis_admin_css',
41  );
42 
43  /**
44  * @inheritDoc
45  * @since 1.15.2
46  */
47  protected $post_type_support = array(
48  'genesis-layouts',
49  'genesis-seo',
50  );
51 }
52 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...