fckplugins.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckplugins.js
  14.  *  Defines the FCKPlugins object that is responsible for loading the Plugins.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. var FCKPlugins = FCK.Plugins = new Object() ;
  20. FCKPlugins.ItemsCount = 0 ;
  21. FCKPlugins.Items = new Object() ;
  22. FCKPlugins.Load = function()
  23. {
  24. var oItems = FCKPlugins.Items ;
  25. // build the plugins collection.
  26. for ( var i = 0 ; i < FCKConfig.Plugins.Items.length ; i++ )
  27. {
  28. var oItem = FCKConfig.Plugins.Items[i] ;
  29. var oPlugin = oItems[ oItem[0] ] = new FCKPlugin( oItem[0], oItem[1], oItem[2] ) ;
  30. FCKPlugins.ItemsCount++ ;
  31. }
  32. // Load all items in the plugins collection.
  33. for ( var s in oItems )
  34. oItems[s].Load() ;
  35. // This is a self destroyable function (must be called once).
  36. FCKPlugins.Load = null ;
  37. }