* Removed the Kevin Roth rich text editor and replaced it with TinyMCE.
[citadel.git] / webcit / tiny_mce / plugins / print / editor_plugin_src.js
1 /* Import theme specific language pack */
2 tinyMCE.importPluginLanguagePack('print', 'en,sv,zh_cn,fa,fr_ca,fr,de,pl,pt_br,cs,nl');
3
4 function TinyMCE_print_getInfo() {
5         return {
6                 longname : 'Print',
7                 author : 'Moxiecode Systems',
8                 authorurl : 'http://tinymce.moxiecode.com',
9                 infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_print.html',
10                 version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
11         };
12 };
13
14 function TinyMCE_print_getControlHTML(control_name)     {
15         switch (control_name) {
16                 case "print":
17                         return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mcePrint\',true);" onmousedown="return false;"><img id="{$editor_id}_print" src="{$pluginurl}/images/print.gif" title="{$lang_print_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
18         }
19
20         return "";
21 }
22
23 /**
24  * Executes     the     search/replace commands.
25  */
26 function TinyMCE_print_execCommand(editor_id, element, command, user_interface, value) {
27         // Handle commands
28         switch (command) {
29                 case "mcePrint":
30                         tinyMCE.getInstanceById(editor_id).contentWindow.print();
31                         return true;
32         }
33
34         // Pass to next handler in chain
35         return false;
36 }