[ Index ]
 

Code source de Seagull 0.6.1

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/tinyfck/plugins/print/ -> editor_plugin_src.js (source)

   1  /**

   2   * $RCSfile: editor_plugin_src.js,v $

   3   * $Revision: 1.19 $

   4   * $Date: 2006/02/10 16:29:40 $

   5   *

   6   * @author Moxiecode

   7   * @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.

   8   */
   9  
  10  /* Import theme    specific language pack */

  11  tinyMCE.importPluginLanguagePack('print', 'en,tr,sv,zh_cn,fa,fr_ca,fr,de,pl,pt_br,cs,nl,da,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,fi,es,cy,is,zh_tw,zh_tw_utf8,sk');
  12  
  13  var TinyMCE_PrintPlugin = {
  14      getInfo : function() {
  15          return {
  16              longname : 'Print',
  17              author : 'Moxiecode Systems',
  18              authorurl : 'http://tinymce.moxiecode.com',
  19              infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_print.html',
  20              version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
  21          };
  22      },
  23  
  24      getControlHTML : function(cn)    {
  25          switch (cn) {
  26              case "print":
  27                  return tinyMCE.getButtonHTML(cn, 'lang_print_desc', '{$pluginurl}/images/print.gif', 'mcePrint');
  28          }
  29  
  30          return "";
  31      },
  32  
  33      /**

  34       * Executes    the    search/replace commands.

  35       */
  36      execCommand : function(editor_id, element, command,    user_interface,    value) {
  37          // Handle commands

  38          switch (command) {
  39              case "mcePrint":
  40                  tinyMCE.getInstanceById(editor_id).contentWindow.print();
  41                  return true;
  42          }
  43  
  44          // Pass to next handler in chain

  45          return false;
  46      }
  47  };
  48  
  49  tinyMCE.addPlugin("print", TinyMCE_PrintPlugin);


Généré le : Fri Mar 30 01:27:52 2007 par Balluche grâce à PHPXref 0.7