GravityView
2.17
The best, easiest way to display Gravity Forms entries on your website.
includes
plugin-and-theme-hooks
class-gravityview-theme-hooks-generatepress.php
Go to the documentation of this file.
1
<?php
2
/**
3
* Add GeneratePress Theme compatibility to GravityView
4
*
5
* @file class-gravityview-theme-hooks-generatepress.php
6
* @since 1.15.2
7
* @license GPL2+
8
* @author GravityView <
[email protected]
>
9
* @link http://gravityview.co
10
* @copyright Copyright 2015, Katz Web Services, Inc.
11
*
12
* @package GravityView
13
*/
14
15
/**
16
* @inheritDoc
17
* @since 1.15.2
18
*/
19
class
GravityView_Theme_Hooks_GeneratePress
extends
GravityView_Plugin_and_Theme_Hooks
{
20
21
/**
22
* @inheritDoc
23
* @since 1.15.2
24
*/
25
protected
$constant_name
=
'GENERATE_VERSION'
;
26
27
/**
28
* @inheritDoc
29
* @since 1.15.2
30
*/
31
protected
$content_meta_keys
= array(
32
'_generate-sidebar-layout-meta'
,
33
'_generate-footer-widget-meta'
,
34
);
35
}
36
37
new
GravityView_Theme_Hooks_GeneratePress
;
GravityView_Theme_Hooks_GeneratePress\$constant_name
$constant_name
Definition:
class-gravityview-theme-hooks-generatepress.php:25
GravityView_Theme_Hooks_GeneratePress
new GravityView_Theme_Hooks_GeneratePress
Definition:
class-gravityview-theme-hooks-generatepress.php:37
GravityView_Theme_Hooks_GeneratePress
Definition:
class-gravityview-theme-hooks-generatepress.php:19
GravityView_Theme_Hooks_GeneratePress\$content_meta_keys
$content_meta_keys
Definition:
class-gravityview-theme-hooks-generatepress.php:31
GravityView_Plugin_and_Theme_Hooks
Abstract class that makes it easy for plugins and themes to register no-conflict scripts and styles...
Definition:
abstract-gravityview-plugin-and-theme-hooks.php:22