Line 1... |
Line 1... |
1 |
/*
|
1 |
/*
|
2 |
* FCKeditor - The text editor for internet
|
2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3 |
* Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
3 |
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
- |
|
4 |
*
|
- |
|
5 |
* == BEGIN LICENSE ==
|
4 |
*
|
6 |
*
|
5 |
* Licensed under the terms of the GNU Lesser General Public License:
|
7 |
* Licensed under the terms of any of the following licenses at your
|
- |
|
8 |
* choice:
|
- |
|
9 |
*
|
- |
|
10 |
* - GNU General Public License Version 2 or later (the "GPL")
|
6 |
* http://www.opensource.org/licenses/lgpl-license.php
|
11 |
* http://www.gnu.org/licenses/gpl.html
|
7 |
*
|
12 |
*
|
8 |
* For further information visit:
|
13 |
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
9 |
* http://www.fckeditor.net/
|
14 |
* http://www.gnu.org/licenses/lgpl.html
|
10 |
*
|
15 |
*
|
11 |
* "Support Open Source software. What about a donation today?"
|
16 |
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
- |
|
17 |
* http://www.mozilla.org/MPL/MPL-1.1.html
|
12 |
*
|
18 |
*
|
13 |
* File Name: fckplugin.js
|
19 |
* == END LICENSE ==
|
- |
|
20 |
*
|
14 |
* This plugin register the required Toolbar items to be able to insert the
|
21 |
* This plugin register the required Toolbar items to be able to insert the
|
15 |
* toolbar commands in the toolbar.
|
22 |
* table commands in the toolbar.
|
16 |
*
|
- |
|
17 |
* File Authors:
|
- |
|
18 |
* Frederico Caldeira Knabben (fredck@fckeditor.net)
|
- |
|
19 |
*/
|
23 |
*/
|
Line 20... |
Line -... |
20 |
|
- |
|
21 |
FCKToolbarItems.RegisterItem( 'TableInsertRow' , new FCKToolbarButton( 'TableInsertRow' , FCKLang.InsertRow, null, null, null, null, 62 ) ) ;
|
- |
|
22 |
FCKToolbarItems.RegisterItem( 'TableDeleteRows' , new FCKToolbarButton( 'TableDeleteRows' , FCKLang.DeleteRows, null, null, null, null, 63 ) ) ;
|
- |
|
23 |
FCKToolbarItems.RegisterItem( 'TableInsertColumn' , new FCKToolbarButton( 'TableInsertColumn' , FCKLang.InsertColumn, null, null, null, null, 64 ) ) ;
|
- |
|
24 |
FCKToolbarItems.RegisterItem( 'TableDeleteColumns' , new FCKToolbarButton( 'TableDeleteColumns', FCKLang.DeleteColumns, null, null, null, null, 65 ) ) ;
|
- |
|
25 |
FCKToolbarItems.RegisterItem( 'TableInsertCell' , new FCKToolbarButton( 'TableInsertCell' , FCKLang.InsertCell, null, null, null, null, 58 ) ) ;
|
- |
|
26 |
FCKToolbarItems.RegisterItem( 'TableDeleteCells' , new FCKToolbarButton( 'TableDeleteCells' , FCKLang.DeleteCells, null, null, null, null, 59 ) ) ;
|
- |
|
27 |
FCKToolbarItems.RegisterItem( 'TableMergeCells' , new FCKToolbarButton( 'TableMergeCells' , FCKLang.MergeCells, null, null, null, null, 60 ) ) ;
|
- |
|
28 |
FCKToolbarItems.RegisterItem( 'TableSplitCell' , new FCKToolbarButton( 'TableSplitCell' , FCKLang.SplitCell, null, null, null, null, 61 ) ) ;
|
24 |
|
- |
|
25 |
FCKToolbarItems.RegisterItem( 'TableInsertRowAfter' , new FCKToolbarButton( 'TableInsertRowAfter' , FCKLang.InsertRowAfter, null, null, null, true, 62 ) ) ;
|
- |
|
26 |
FCKToolbarItems.RegisterItem( 'TableDeleteRows' , new FCKToolbarButton( 'TableDeleteRows' , FCKLang.DeleteRows, null, null, null, true, 63 ) ) ;
|
- |
|
27 |
FCKToolbarItems.RegisterItem( 'TableInsertColumnAfter' , new FCKToolbarButton( 'TableInsertColumnAfter' , FCKLang.InsertColumnAfter, null, null, null, true, 64 ) ) ;
|
- |
|
28 |
FCKToolbarItems.RegisterItem( 'TableDeleteColumns' , new FCKToolbarButton( 'TableDeleteColumns', FCKLang.DeleteColumns, null, null, null, true, 65 ) ) ;
|
- |
|
29 |
FCKToolbarItems.RegisterItem( 'TableInsertCellAfter' , new FCKToolbarButton( 'TableInsertCellAfter' , FCKLang.InsertCellAfter, null, null, null, true, 58 ) ) ;
|
- |
|
30 |
FCKToolbarItems.RegisterItem( 'TableDeleteCells' , new FCKToolbarButton( 'TableDeleteCells' , FCKLang.DeleteCells, null, null, null, true, 59 ) ) ;
|
- |
|
31 |
FCKToolbarItems.RegisterItem( 'TableMergeCells' , new FCKToolbarButton( 'TableMergeCells' , FCKLang.MergeCells, null, null, null, true, 60 ) ) ;
|
- |
|
32 |
FCKToolbarItems.RegisterItem( 'TableHorizontalSplitCell' , new FCKToolbarButton( 'TableHorizontalSplitCell' , FCKLang.SplitCell, null, null, null, true, 61 ) ) ;
|
- |
|
33 |
FCKToolbarItems.RegisterItem( 'TableCellProp' , new FCKToolbarButton( 'TableCellProp' , FCKLang.CellProperties, null, null, null, true, 57 ) ) ;
|