Skip to content

Instantly share code, notes, and snippets.

@mintindeed
Created August 20, 2013 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mintindeed/6282939 to your computer and use it in GitHub Desktop.
Save mintindeed/6282939 to your computer and use it in GitHub Desktop.
<?php
$GLOBALS['pmc_required_plugins'] = array(
'debug-bar-console/debug-bar-console.php',
'debug-bar-cron/debug-bar-cron.php',
'debug-bar-extender/debug-bar-extender.php',
'debug-bar-super-globals/debug-bar-super-globals.php',
'debug-bar/debug-bar.php',
'developer/developer.php',
'jetpack/jetpack.php',
'log-deprecated-notices/log-deprecated-notices.php',
'log-viewer/log-viewer.php',
'mp6/mp6.php',
'polldaddy/polldaddy.php',
'regenerate-thumbnails/regenerate-thumbnails.php',
'rewrite-rules-inspector/rewrite-rules-inspector.php',
'user-switching/user-switching.php',
'vip-scanner/vip-scanner-wpcom.php',
'vip-scanner/vip-scanner.php',
'wordpress-importer/wordpress-importer.php',
);
add_filter( 'option_active_plugins', function( $active_plugins ) {
$active_plugins = array_merge( $active_plugins, $GLOBALS['pmc_required_plugins'] );
$active_plugins = array_unique( $active_plugins );
return $active_plugins;
} );
add_filter( 'plugin_action_links', function( $actions, $plugin_file, $plugin_data, $context ) {
// Remove edit link for all plugins
if ( array_key_exists( 'edit', $actions ) ) {
unset( $actions['edit'] );
}
// Remove deactivate link for important plugins
if ( array_key_exists( 'deactivate', $actions ) && in_array( $plugin_file, $GLOBALS['pmc_required_plugins'] ) ) {
unset( $actions['deactivate'] );
}
return $actions;
}, 10, 4 );
add_filter( 'pre_site_transient_update_core', '__return_null' );
//EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment