GravityView
2.17
The best, easiest way to display Gravity Forms entries on your website.
includes
class-gravityview-extension.php
Go to the documentation of this file.
1
<?php
2
/**
3
* @package GravityView
4
* @license GPL2+
5
* @author GravityView <
[email protected]
>
6
* @link https://gravityview.co
7
* @copyright Copyright 2015, Katz Web Services, Inc.
8
*/
9
10
/**
11
* Extend this class to create a GravityView extension that gets updates from GravityView.co
12
*
13
* @deprecated Use \GV\Extension instead
14
*
15
* @TODO Remove once all extensions have been updated to use Foundation.
16
*/
17
abstract
class
GravityView_Extension
extends
\GV\Extension
{
18
public
function
__construct
() {
19
if
( ! in_array( $this->_author, array(
'GravityView'
,
'Katz Web Services, Inc.'
,
true
) ) ) {
20
gravityview
()->log->warning(
'\GravityView_Extension is deprecated. Inherit from \GV\Extension instead'
, array(
'data'
=> $this ) );
21
}
22
parent::__construct();
23
}
24
}
GravityView_Extension
Extend this class to create a GravityView extension that gets updates from GravityView.co.
Definition:
class-gravityview-extension.php:17
GV\Extension
If this file is called directly, abort.
Definition:
class-gv-extension.php:18
GravityView_Extension\__construct
__construct()
Definition:
class-gravityview-extension.php:18
gravityview
gravityview()
The main GravityView wrapper function.
Definition:
future/gravityview.php:26