PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home3/caa20236/www/wp-content/plugins/pdf-embedder/src/Helpers/ |
| Server: Linux int2.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 IP: 138.117.148.152 |
| Dir : /home3/caa20236/www/wp-content/plugins/pdf-embedder/src/Helpers/Multisite.php |
<?php
namespace PDFEmbedder\Helpers;
/**
* Helpful methods around the WordPress multisite functionality.
*
* @since 4.7.0
*/
class Multisite {
/**
* Check if the site is Multisite and the plugin is network activated.
*
* @since 4.7.0
*/
public static function is_network_activated(): bool {
if ( ! is_multisite() ) {
return false;
}
if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
require_once ABSPATH . '/wp-admin/includes/plugin.php';
}
return is_plugin_active_for_network( plugin_basename( PDFEMB_PLUGIN_FILE ) );
}
}