fs-essential-functions-1.1.7.1.php
5 years ago
fs-essential-functions-2.2.1.php
5 years ago
index.php
5 years ago
fs-essential-functions-2.2.1.php
45 lines
| 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 | } |