PluginProbe ʕ •ᴥ•ʔ
Auto Post Cleaner / 3.13.1
Auto Post Cleaner v3.13.1
3.12.0 3.13.1 3.2.4 3.2.5 3.3.0 3.3.10 3.3.11 3.3.8 3.4.2 3.5.3 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.7.5 3.7.6 3.8.0 3.9.0 3.9.4 3.9.6 3.9.7 trunk 3.0.0 3.1.0 3.10.1 3.10.2 3.11.4
delete-old-posts-programmatically / freemius / includes / supplements / fs-essential-functions-2.2.1.php
delete-old-posts-programmatically / freemius / includes / supplements Last commit date
fs-essential-functions-1.1.7.1.php 5 years ago fs-essential-functions-2.2.1.php 5 years ago fs-migration-2.5.1.php 3 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 }