<?php
/*
Plugin Name: All Options Access
Plugin URI: http://txfx.net/2005/03/22/wp-all-options-access/
Author: Mark Jaquith
Author URI: http://txfx.net/?wp_aoa
Description: Adds a link to "All Options" page under the "Options" menu
*/

add_action('admin_menu', create_function('$a', 'add_options_page(__(\'All Options\'), __(\'All Options\'), 8, \'options.php\');'));

?>