* @version $Id$ * @package plugins * @subpackage squirrelspell */ /** * Declaring globals for E_ALL */ global $SQSPELL_CRYPTO; switch ($_POST['action']){ case 'encrypt': /** * Let's encrypt the file and save it in an encrypted format. */ $words=sqspell_getWords(); /** * Flip the flag so the sqspell_writeWords function knows to encrypt * the message before writing it to the disk. */ $SQSPELL_CRYPTO=true; /** * Call the function that does the actual encryption_decryption. */ sqspell_writeWords($words); $msg='

' . _("Your personal dictionary has been encrypted and is now stored in an encrypted format.") . '

'; break; case 'decrypt': /** * Let's decrypt the file and save it as plain text. */ $words=sqspell_getWords(); /** * Flip the flag and tell the sqspell_writeWords() function that we * want to save it plaintext. */ $SQSPELL_CRYPTO=false; sqspell_writeWords($words); $msg='

' . _("Your personal dictionary has been decrypted and is now stored as plain text.") . '

'; break; case '': /** * Wait, this shouldn't happen! :) */ $msg = '

No action requested.

'; break; } sqspell_makePage( _("Personal Dictionary Crypto Settings"), null, $msg); /** * For Emacs weenies: * Local variables: * mode: php * End: * vim: syntax=php */ ?>