Whoops, forgot debug code. Thaks Jonathan.
[squirrelmail.git] / plugins / squirrelspell / setup.php
CommitLineData
849bdf42 1<?php
d112ed5a 2/**
3 * setup.php
4 * -----------
5 * Squirrelspell setup file, as defined by the SquirrelMail-1.2 API.
6 *
76911253 7 * Copyright (c) 1999-2003 The SquirrelMail development team
d112ed5a 8 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 *
10 * $Id$
11 *
12 * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
13 * @version $Date$
ea5f4b8e 14 * @package plugins
15 * @subpackage squirrelspell
d112ed5a 16 */
849bdf42 17
d112ed5a 18/**
19 * Standard squirrelmail plugin initialization API.
20 *
21 * @return void
22 */
23function squirrelmail_plugin_init_squirrelspell() {
24 global $squirrelmail_plugin_hooks;
25 $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] =
26 'squirrelspell_setup';
27 $squirrelmail_plugin_hooks['optpage_register_block']['squirrelspell'] =
28 'squirrelspell_optpage_register_block';
29 $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] =
30 'squirrelspell_options';
31}
849bdf42 32
d112ed5a 33/**
34 * This function formats and adds the plugin and its description to the
35 * Options screen.
36 *
37 * @return void
38 */
39function squirrelspell_optpage_register_block() {
40 global $optpage_blocks;
41 /**
42 * soupNazi checks if this browser is capable of using the plugin.
43 */
44 if (!soupNazi()) {
45 /**
46 * The browser checks out.
47 * Register Squirrelspell with the $optionpages array.
48 */
49 $optpage_blocks[] =
50 array(
51 'name' => _("SpellChecker Options"),
52 'url' => '../plugins/squirrelspell/sqspell_options.php',
2a917bbc 53 '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."),
d112ed5a 54 'js' => TRUE);
55 }
56}
849bdf42 57
d112ed5a 58/**
59 * This function adds a "Check Spelling" link to the "Compose" row
60 * during message composition.
61 *
62 * @return void
63 */
64function squirrelspell_setup() {
65 /**
66 * Check if this browser is capable of displaying SquirrelSpell
67 * correctly.
68 */
69 if (!soupNazi()) {
70 /**
71 * Some people may choose to disable javascript even though their
72 * browser is capable of using it. So these freaks don't complain,
73 * use document.write() so the "Check Spelling" button is not
74 * displayed if js is off in the browser.
75 */
4e37bc18 76 echo "<script type=\"text/javascript\">\n"
77 . "<!--\n"
d112ed5a 78 . 'document.write("<input type=\"button\" value=\"'
79 . _("Check Spelling")
80 . '\" onclick=\"window.open(\'../plugins/squirrelspell/sqspell_'
81 . 'interface.php\', \'sqspell\', \'status=yes,width=550,height=370,'
4e37bc18 82 . 'resizable=yes\')\">");' . "\n"
83 . "//-->\n"
d112ed5a 84 . "</script>\n";
85 }
86}
2a15152a 87?>