GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-uninstall.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Fired when the plugin is uninstalled.
4  *
5  * @package GravityView
6  * @author Zack Katz <[email protected]>
7  * @license ToBeDefined
8  * @link http://gravityview.co
9  * @copyright Copyright 2015, Katz Web Services, Inc.
10  */
11 
12 /**
13  * Delete GravityView content when GravityView is uninstalled, if the setting is set to "Delete on Uninstall"
14  *
15  * @deprecated Use gravityview()->plugin->uninstall() instead.
16  *
17  * @since 1.15
18  */
20 
21  /**
22  * Delete GravityView Views, settings, roles, caps, etc.
23  * @see https://youtu.be/FXy_DO6IZOA?t=35s
24  * @since 1.15
25  *
26  * @deprecated Use gravityview()->plugin->uninstall()
27  *
28  * @return void
29  */
30  public function fire_everything() {
31  gravityview()->log->warning( '\GravityView_Uninstall::fire_everything is deprecated. Use \GV\Plugin::uninstall instead' );
32  gravityview()->plugin->uninstall();
33  }
34 }
fire_everything()
Delete GravityView Views, settings, roles, caps, etc.
Delete GravityView content when GravityView is uninstalled, if the setting is set to "Delete on Unins...
gravityview()
The main GravityView wrapper function.