SchWeb Designs. Author: Ryan Schwiebert Author URI: http://www.schwebdesigns.com/ Version: 1.0 * Based off the file manager hack by Joe Schmoe. * which is available at: http://mudbomb.com/archives/2004/05/27/wordpress-file-manager-hack/ * Basically adds Morten Bojsen-Hansen's excellent File Manager PhpFM to WordPress 1.5 * * Plugin structure taken largely from Wordpress Plugin Organizer. * which is available at: http://i2blog.com/imthiaz/wp-plugin-organizer/ * * Licensed under the GNU GPL. * * * -=Installation Instructions=- * * 1. Upload contents of wp-admin to your WordPress /wp-admin/ folder. * * 2. Upload /wp-content/plugins/filemanager-plugin.php to your WordPress plugins folder. * * 3. Open your WordPress administration screen and "Activate" this plugin. * * 4. If you have not already, enable WordPress File uploads in Options>Miscellaneous * * 5. Ensure that this images folder is writeable by the webserver. (usually this is the default) * *6. A new item will apear in WordPress Administration Screen as "File Manager." Click this to use! */ // add_option('filemanager_installed', '1', 'File Manager Installed', 'yes'); function add_filemanager_menu() { global $menu,$submenu; //Get Wordpress upload User level $Upload_Level = get_option('fileupload_minlevel'); //Add File Manager main menu to wordpress main menu $menu[46] = array(__('File Manager'), $Upload_Level, 'filemanager-index.php'); } //Add File Manager menu function to admin menu call add_action('admin_menu', 'add_filemanager_menu'); ?>