﻿/*
 * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
 *
 * Licensed under the terms of the GNU Lesser General Public License:
 * 		http://www.opensource.org/licenses/lgpl-license.php
 *
 * For further information visit:
 * 		http://www.fckeditor.net/
 *
 * "Support Open Source software. What about a donation today?"
 *
 * File Name: fckplugin.js
 * 	This plugin register the required Toolbar items to be able to insert the
 * 	toolbar commands in the toolbar.
 *
 * File Authors:
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
 */

FCKCommands.RegisterCommand('InsertMyLink',new FCKDialogCommand('Insert a link', 'Insertion a link',FCKConfig.PluginsPath+"myLink/dialog.html",400,400));
var oInsertMyLinkItem = new FCKToolbarButton( "InsertMyLink", "insert/edit a link" ) ;
oInsertMyLinkItem.IconPath = FCKConfig.PluginsPath + 'myLink/link.gif' ;
FCKToolbarItems.RegisterItem( 'InsertMyLink', oInsertMyLinkItem ) ;
