12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * Administrator plugin - Setup script
- *
- * Plugin allows remote administration.
- *
- * @version $Id$
- * @author Philippe Mingo
- * @copyright (c) 1999-2004 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @package plugins
- * @subpackage administrator
- */
- /** @ignore */
- require_once(SM_PATH . 'plugins/administrator/auth.php');
- /**
- * Init the plugin
- * @access private
- */
- function squirrelmail_plugin_init_administrator() {
- global $squirrelmail_plugin_hooks, $username;
- if ( adm_check_user() ) {
- $squirrelmail_plugin_hooks['optpage_register_block']['administrator'] =
- 'squirrelmail_administrator_optpage_register_block';
- }
- }
- /**
- * Register option block
- * @access private
- */
- function squirrelmail_administrator_optpage_register_block() {
- global $optpage_blocks;
- global $AllowSpamFilters;
- $optpage_blocks[] = array(
- 'name' => _("Administration"),
- 'url' => '../plugins/administrator/options.php',
- 'desc' => _("This module allows administrators to manage SquirrelMail main configuration remotely."),
- 'js' => false
- );
- }
- ?>
|