Moved dictionaries and settings to SM prefs system
[squirrelmail.git] / plugins / squirrelspell / modules / edit_dic.mod
CommitLineData
849bdf42 1<?php
d112ed5a 2/**
3 * edit_dic.mod
4 * -------------
5 * Squirrelspell module
6 *
9eb3fcb3 7 * Copyright (c) 1999-2005 The SquirrelMail Project Team
d112ed5a 8 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 *
10 * This module lets the user edit his/her personal dictionary.
11 *
44d661aa 12 * @author Konstantin Riabitsev <icon@duke.edu>
13 * @version $Id$
14 * @package plugins
15 * @subpackage squirrelspell
d112ed5a 16 */
2b5a7157 17
d112ed5a 18global $color;
7996c920 19
20$pre_msg = '<p>'
21 . _("Please check any words you wish to delete from your dictionary.")
22 . "</p>\n";
23$pre_msg .= "<table border=\"0\" width=\"95%\" align=\"center\">\n";
24
d112ed5a 25/**
7996c920 26 * Get how many dictionaries this user has defined.
d112ed5a 27 */
7996c920 28$langs=sqspell_getSettings();
29
30foreach ($langs as $lang) {
d112ed5a 31 /**
7996c920 32 * Get all words from this language dictionary.
d112ed5a 33 */
7996c920 34 $lang_words = sqspell_getLang($lang);
35 if (! empty($lang_words)){
d112ed5a 36 /**
7996c920 37 * There are words in this dictionary. If this is the first
38 * language we're processing, prepend the output with the
39 * "header" message.
d112ed5a 40 */
7996c920 41 if (!isset($msg) || !$msg) {
42 $msg = $pre_msg;
43 }
44 $msg .= "<tr bgcolor=\"$color[0]\" align=\"center\"><th>"
45 . sprintf( _("%s dictionary"), $lang ) . '</th></tr>'
46 . '<tr><td align="center">'
47 . '<form method="post">'
48 . '<input type="hidden" name="MOD" value="forget_me" />'
49 . '<input type="hidden" name="sqspell_use_app" value="'
50 . $lang . '" />'
51 . '<table border="0" width="95%" align="center">'
52 . '<tr>'
53 . "<td valign=\"top\">\n";
54 /**
55 * Do some fancy stuff to separate the words into three
56 * columns.
57 */
58 for ($j=0; $j<sizeof($lang_words); $j++){
59 if ($j==intval(sizeof($lang_words)/3)
60 || $j==intval(sizeof($lang_words)/3*2)){
61 $msg .= "</td><td valign=\"top\">\n";
d112ed5a 62 }
7996c920 63 $msg .= "<input type=\"checkbox\" name=\"words_ary[]\" "
64 . 'value="'.htmlspecialchars($lang_words[$j]). '" /> '
65 . htmlspecialchars($lang_words[$j]) . "<br />\n";
2b5a7157 66 }
7996c920 67 $msg .= '</td></tr></table></td></tr>'
68 . "<tr bgcolor=\"$color[0]\" align=\"center\"><td>"
69 . '<input type="submit" value="' . _("Delete checked words")
70 . '" /></form>'
71 . '</td></tr><tr><td><hr />'
72 . "</td></tr>\n";
d112ed5a 73 }
d112ed5a 74}
7996c920 75/**
76 * Check if all dictionaries were empty.
77 */
78if (! isset($msg)) {
79 $msg = '<p>' . _("No words in your personal dictionary.") . '</p>';
80} else {
81 $msg .= '</table>';
82}
83sqspell_makePage(_("Edit your Personal Dictionary"), null, $msg);
d112ed5a 84
85/**
86 * For Emacs weenies:
87 * Local variables:
88 * mode: php
89 * End:
2b6b400e 90 * vim: syntax=php
d112ed5a 91 */
2b5a7157 92
04fa3c41 93?>