| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
class Generic_WidgetBoldGrid_AdminActions {
function w3tc_boldgrid_install() {
$plugin_file = 'boldgrid-backup/boldgrid-backup.php';
$slug = 'boldgrid-backup';
$plugins = get_plugins();
if ( isset( $plugins[$plugin_file] ) ) {
$install_url = 'plugins.php?action=activate' .
'&plugin=' . urlencode( $plugin_file ) .
'&plugin_status=all&paged=1&s&_wpnonce=' .
wp_create_nonce( 'activate-plugin_' . $plugin_file );
} else {
$install_url =
'update.php?action=install-plugin&plugin=' . $slug .
'&_wpnonce=' . wp_create_nonce( 'install-plugin_' . $slug );
}
wp_redirect( $install_url );
exit();
}
}