includes/admin/views/html-admin-page-status-report.php 1 location
|
@@ 423-426 (lines=4) @@
|
| 420 |
|
<?php |
| 421 |
|
$active_plugins = (array) get_option( 'active_plugins', array() ); |
| 422 |
|
|
| 423 |
|
if ( is_multisite() ) { |
| 424 |
|
$network_activated_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); |
| 425 |
|
$active_plugins = array_merge( $active_plugins, $network_activated_plugins ); |
| 426 |
|
} |
| 427 |
|
|
| 428 |
|
foreach ( $active_plugins as $plugin ) { |
| 429 |
|
|
includes/api/class-wc-rest-system-status-controller.php 1 location
|
@@ 559-562 (lines=4) @@
|
| 556 |
|
|
| 557 |
|
// Get both site plugins and network plugins |
| 558 |
|
$active_plugins = (array) get_option( 'active_plugins', array() ); |
| 559 |
|
if ( is_multisite() ) { |
| 560 |
|
$network_activated_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); |
| 561 |
|
$active_plugins = array_merge( $active_plugins, $network_activated_plugins ); |
| 562 |
|
} |
| 563 |
|
|
| 564 |
|
$active_plugins_data = array(); |
| 565 |
|
foreach ( $active_plugins as $plugin ) { |