PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / trunk
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites vtrunk
4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 2.6.1 All 38 releases
blockspare / freemius / includes / supplements / fs-essential-functions-2.2.1.php

fs-essential-functions-2.2.1.php in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites trunk, at freemius/includes/supplements/fs-essential-functions-2.2.1.php

45 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Freemius
4 * @copyright Copyright (c) 2015, Freemius, Inc.
5 * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6 * @since 2.2.1
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 if ( ! function_exists( 'fs_get_plugins' ) ) {
14 /**
15 * @author Leo Fajardo (@leorw)
16 * @since 2.2.1
17 *
18 * @param bool $delete_cache
19 *
20 * @return array
21 */
22 function fs_get_plugins( $delete_cache = false ) {
23 $cached_plugins = wp_cache_get( 'plugins', 'plugins' );
24 if ( ! is_array( $cached_plugins ) ) {
25 $cached_plugins = array();
26 }
27
28 $plugin_folder = '';
29 if ( isset( $cached_plugins[ $plugin_folder ] ) ) {
30 $plugins = $cached_plugins[ $plugin_folder ];
31 } else {
32 if ( ! function_exists( 'get_plugins' ) ) {
33 require_once ABSPATH . 'wp-admin/includes/plugin.php';
34 }
35
36 $plugins = get_plugins();
37
38 if ( $delete_cache && is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
39 wp_cache_delete( 'plugins', 'plugins' );
40 }
41 }
42
43 return $plugins;
44 }
45 }