import torrus 1.0.9
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / internals / fckplugins.js
1 /*\r
2  * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
3  * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
4  *\r
5  * == BEGIN LICENSE ==\r
6  *\r
7  * Licensed under the terms of any of the following licenses at your\r
8  * choice:\r
9  *\r
10  *  - GNU General Public License Version 2 or later (the "GPL")\r
11  *    http://www.gnu.org/licenses/gpl.html\r
12  *\r
13  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
14  *    http://www.gnu.org/licenses/lgpl.html\r
15  *\r
16  *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
17  *    http://www.mozilla.org/MPL/MPL-1.1.html\r
18  *\r
19  * == END LICENSE ==\r
20  *\r
21  * Defines the FCKPlugins object that is responsible for loading the Plugins.\r
22  */\r
23 \r
24 var FCKPlugins = FCK.Plugins = new Object() ;\r
25 FCKPlugins.ItemsCount = 0 ;\r
26 FCKPlugins.Items = new Object() ;\r
27 \r
28 FCKPlugins.Load = function()\r
29 {\r
30         var oItems = FCKPlugins.Items ;\r
31 \r
32         // build the plugins collection.\r
33         for ( var i = 0 ; i < FCKConfig.Plugins.Items.length ; i++ )\r
34         {\r
35                 var oItem = FCKConfig.Plugins.Items[i] ;\r
36                 var oPlugin = oItems[ oItem[0] ] = new FCKPlugin( oItem[0], oItem[1], oItem[2] ) ;\r
37                 FCKPlugins.ItemsCount++ ;\r
38         }\r
39 \r
40         // Load all items in the plugins collection.\r
41         for ( var s in oItems )\r
42                 oItems[s].Load() ;\r
43 \r
44         // This is a self destroyable function (must be called once).\r
45         FCKPlugins.Load = null ;\r
46 }\r