daa8c1982ce470f04fddbbdd8745158ea8c47879
4 ** setup.php -- Squirrelspell setup file
6 ** Copyright (c) 1999-2001 The SquirrelMail development team
7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
9 ** This is a standard Squirrelmail-1.2 API for plugins.
15 * This function checks whether the user's USER_AGENT is known to
16 * be broken. If so, returns true and the plugin is invisible to the
21 global $HTTP_USER_AGENT, $SQSPELL_SOUP_NAZI;
23 require_once('../plugins/squirrelspell/sqspell_config.php');
25 $soup_menu = explode( ',', $SQSPELL_SOUP_NAZI );
26 return( in_array( trim( $HTTP_USER_AGENT ), $soup_menu ) );
29 function squirrelmail_plugin_init_squirrelspell() {
30 /* Standard initialization API. */
31 global $squirrelmail_plugin_hooks;
33 $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] = 'squirrelspell_setup';
34 $squirrelmail_plugin_hooks['optpage_register_block']['squirrelspell'] = 'squirrelspell_optpage_register_block';
35 $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] = 'squirrelspell_options';
38 function squirrelspell_optpage_register_block() {
39 // Gets added to the user's OPTIONS page.
40 global $optpage_blocks;
44 /* Register Squirrelspell with the $optionpages array. */
45 $optpage_blocks[] = array(
46 'name' => _("SpellChecker Options"),
47 'url' => '../plugins/squirrelspell/sqspell_options.php',
48 '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."),
54 function squirrelspell_setup() {
55 /* Gets added to the COMPOSE buttons row. */
58 ** using document.write to hide this functionality from people
59 ** with JavaScript turned off.
61 echo "<script type=\"text/javascript\">\n".
63 'document.write("<input type=\"button\" value=\"' .
64 _("Check Spelling") . '\" onclick=\"window.open(\'../plugins/squirrelspell/sqspell_interface.php\', \'sqspell\', \'status=yes,width=550,height=370,resizable=yes\')\">");'. "\n" .