fckplugins.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 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.  * File Name: fckplugins.js
  12.  *  Defines the FCKPlugins object that is responsible for loading the Plugins.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKPlugins = FCK.Plugins = new Object() ;
  18. FCKPlugins.ItemsCount = 0 ;
  19. FCKPlugins.Loaded = false ;
  20. FCKPlugins.Items = new Object() ;
  21. // Set the defined plugins scripts paths.
  22. for ( var i = 0 ; i < FCKConfig.Plugins.Items.length ; i++ )
  23. {
  24. var oItem = FCKConfig.Plugins.Items[i] ;
  25. FCKPlugins.Items[ oItem[0] ] = new FCKPlugin( oItem[0], oItem[1], oItem[2] ) ;
  26. FCKPlugins.ItemsCount++ ;
  27. }
  28. FCKPlugins.Load = function()
  29. {
  30. // Load all items.
  31. for ( var s in this.Items )
  32. this.Items[s].Load() ;
  33. // Mark as loaded.
  34. this.Loaded = true ;
  35. // This is a self destroyable function (must be called once).
  36. FCKPlugins.Load = null ;
  37. }