Some Administrator plugin instalation tips.
[squirrelmail.git] / plugins / squirrelspell / setup.php
index 37ca6def51d33587686c0a0c90fcd22433a44c53..654b1107a7de2fdbfa1907fae51a5ab39cacc8e1 100644 (file)
@@ -3,7 +3,7 @@
    /**
     **  setup.php -- Squirrelspell setup file
     **
-    **  Copyright (c) 1999-2001 The SquirrelMail development team
+    **  Copyright (c) 1999-2002 The SquirrelMail development team
     **  Licensed under the GNU GPL. For full terms see the file COPYING.
     **
     **  This is a standard Squirrelmail-1.2 API for plugins.
     **  $Id$
     **/
 
-    /**
-     * This function checks whether the user's USER_AGENT is known to
-     * be broken. If so, returns true and the plugin is invisible to the
-     * offending browser.
-     */
-    function soupNazi(){
-
-        global $HTTP_USER_AGENT, $SQSPELL_SOUP_NAZI;
-        
-        require_once('../plugins/squirrelspell/sqspell_config.php');
-
-        $soup_menu = explode( ',', $SQSPELL_SOUP_NAZI );
-        return( in_array( trim( $HTTP_USER_AGENT ), $soup_menu ) );
-    }
-
     function squirrelmail_plugin_init_squirrelspell() {
         /* Standard initialization API. */
         global $squirrelmail_plugin_hooks;
 
         $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] = 'squirrelspell_setup';
-        $squirrelmail_plugin_hooks['options_register']['squirrelspell'] = 'squirrelspell_options';
+        $squirrelmail_plugin_hooks['optpage_register_block']['squirrelspell'] = 'squirrelspell_optpage_register_block';
         $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] = 'squirrelspell_options';
     }
 
-    function squirrelspell_options() {
+    function squirrelspell_optpage_register_block() {
        // Gets added to the user's OPTIONS page.
-       global $optionpages;
+       global $optpage_blocks;
 
        if ( !soupNazi() ) {
 
            /* Register Squirrelspell with the $optionpages array. */
-           $optionpages[] = array(
+           $optpage_blocks[] = array(
                'name' => _("SpellChecker Options"),
                'url'  => '../plugins/squirrelspell/sqspell_options.php',
                'desc' => _("Here you may set up how your personal dictionary is stored, edit it, or choose which languages should be available to you when spell-checking."),