Lines:
1 to 62 of 62
<?php // (C) Copyright Bobbing Wide 2012 /** Copyright 2012 Bobbing Wide (email : herb@bobbingwide.com ) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published by the Free Software Foundation. You may NOT assume that you can use any other version of the GPL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The license for this software can likely be found here: http://www.gnu.org/licenses/gpl-2.0.html */ //add_action( "oik_admin_menu", "bw_relocate_admin_menu", 20 ); //add_action( "admin_action_activate", "bw_relocate_activate" ); //add_action( "pre_current_active_plugins", "bw_relocate_pre_current_active_plugins", 10, 1 ); //function bw_relocate_plugin_list() { // //bw_add_relocation( 'play/relocateme.php', 'relocateme/relocateme.php' ); // //bw_add_relocation( 'oldplay/rel1.php', 'play-rel2/rel1.php' ); // //bw_add_relocation( 'oldplay/rel2.php', 'play-rel2/rel2.php' ); //} /* function bw_mkdir() – Create the target directory if it does not already exist as a directory */ /* function bw_movefile() – Move the file from $fromfile to $tofile */ /* function bw_deletefile() – Wrapper to unlink */ /* function bw_relocate() – Function bw_relocate */ /* function bw_perform_relocations() – Perform relocations */ /* function bw_replace_active_plugins() – Replace all entries in "active_sitewide_plugins" and "active_plugins" with the new $to locations Note: We don’t need to check if the plugin is network only, we just check both arrays We do this whether it’s multisite or not. */ /* function bw_unset_update_plugins() – Remove from the update_plugins transient any plugin that has been relocated */ /* function bw_relocate_plugins() – Perform relocation of selected child plugins */ /* function bw_update_list_table() – Alter the wp_list_table to reflect the plugin file changes */ /* function bw_lazy_relocate_pre_current_active_plugins() – Perform plugin relocation just before the plugins are listed on the admin page for action: pre_current_active_plugins */View on GitHub View on Trac