GravityView
2.17
The best, easiest way to display Gravity Forms entries on your website.
|
GPL-2.0-or-later More...
Namespaces | |
Encryption | |
GPL-2.0-or-later | |
Helpers | |
GPL-2.0-or-later | |
Integrations | |
GPL-2.0-or-later | |
Licenses | |
GPL-2.0-or-later | |
Logger | |
GPL-2.0-or-later | |
Settings | |
GPL-2.0-or-later | |
Translations | |
GPL-2.0-or-later | |
WP | |
GPL-2.0-or-later | |
Data Structures | |
class | Core |
Functions | |
is_disabled_via_url ( $plugin_file) | |
Checks if loading is disabled via a URL parameter. More... | |
meets_min_php_version_requirement ( $plugin_file, $min_php_version='5.6.4', $show_notice=true) | |
Checks if the minimum PHP version requirement is met. More... | |
should_load ( $plugin_file) | |
Determines if a plugin should load. More... | |
GPL-2.0-or-later
Modified by gravityview on 13-January-2023 using Strauss.
GravityKit\GravityView\Foundation\is_disabled_via_url | ( | $plugin_file | ) |
Checks if loading is disabled via a URL parameter.
Adding ?gk_disable_loading to the URL will prevent the loading of all plugins that include Foundation. Adding ?gk_disable_loading=plugin-text-domain to the URL will prevent the loading of specific plugin(s) that includes Foundation (multiple text domains can be comma-separated).
string | $plugin_file | Absolute path to the main plugin file. |
Definition at line 38 of file preflight_check.php.
References Core\get_plugin_data().
Referenced by GravityKit\GravityView\Foundation\should_load().
GravityKit\GravityView\Foundation\meets_min_php_version_requirement | ( | $plugin_file, | |
$min_php_version = '5.6.4' , |
|||
$show_notice = true |
|||
) |
Checks if the minimum PHP version requirement is met.
string | $plugin_file | Absolute path to the main plugin file. |
string | $min_php_version | (optional) Minimum PHP version. Default: 5.6.4. |
bool | $show_notice | (optional) Display error notice. Default: true. |
Definition at line 93 of file preflight_check.php.
References Core\get_plugin_data().
Referenced by GravityKit\GravityView\Foundation\should_load().
GravityKit\GravityView\Foundation\should_load | ( | $plugin_file | ) |
Determines if a plugin should load.
string | $plugin_file | Absolute path to the main plugin file. |
Definition at line 23 of file preflight_check.php.
References GravityKit\GravityView\Foundation\is_disabled_via_url(), and GravityKit\GravityView\Foundation\meets_min_php_version_requirement().