GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-plugin-hooks-members.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Enhance Members compatibility with GravityView
4  *
5  * @file class-gravityview-plugin-hooks-members.php
6  * @package GravityView
7  * @license GPL2+
8  * @author GravityView <[email protected]>
9  * @link https://gravityview.co
10  * @copyright Copyright 2022, Katz Web Services, Inc.
11  *
12  * @since 2.14.1
13  */
14 
15 /**
16  * @inheritDoc
17  */
19 
20  /**
21  * @var string Check for the Members_Plugin class
22  */
23  protected $class_name = 'Members_Plugin';
24 
25  protected $style_handles = array(
26  'members-edit-post',
27  'members-pointers',
28  'members-admin',
29  'thickbox',
30  'editor-buttons',
31  );
32 
33  protected $script_handles = array(
34  'members-edit-post',
35  'members-pointers',
36  'wp-tinymce',
37  'quicktags',
38  'buttons',
39  'thickbox',
40  'post',
41  'jquery-ui-autocomplete',
42  'wplink',
43  'wp-embed',
44  'media-upload',
45  'editor',
46  'members-block-permissions-editor',
47  'postbox',
48  'wp-util',
49  'wp-pointer',
50  );
51 }
52 
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...