Files
admin
FCKeditor
_samples
_plugins
afp
asp
cfm
html
sample01.html
sample02.html
sample03.html
sample04.html
sample05.html
sample06.config.js
sample06.html
sample07.html
sample08.html
sample09.html
sample10.html
sample11.html
sample11_frame.html
sample12.html
sample13.html
sampleposteddata.asp
sampleposteddata.html
lasso
perl
php
py
default.html
sample.css
sampleslist.html
editor
_documentation.html
_upgrade.html
_whatsnew.html
fckconfig.js
fckeditor.afp
fckeditor.asp
fckeditor.cfc
fckeditor.cfm
fckeditor.js
fckeditor.lasso
fckeditor.php
fckeditor.pl
fckeditor.py
fckeditor_php4.php
fckeditor_php5.php
fckpackager.xml
fckstyles.xml
fcktemplates.xml
htaccess.txt
license.txt
bescheinigung
import
livesearch
adm_anleg.php
adm_bearb.php
adminrechte.php
adminrechte_del.php
anmschluss.php
anwesenheit.php
ausg_aush.php
ausgabe.php
aushang.php
bescheinigung_admin.php
cross.jpg
detailansicht.php
erfassen.php
expo.php
export.php
hauptframe.htm
hauptframe_jahr.php
index.php
jahrgang.php
kennwortwechsel_admin.php
ldap_search.php
liste.php
livesearch_stud.php
login_log.php
logout_admin.php
mail.php
mail_unangemeldet.php
mail_vert.php
mailadressen.php
mailcompare.php
menuframe.php
ok.gif
pass_back.php
registrierung.php
spt_bearbeiten.php
spt_useronline.php
stud_bearb.php
stud_neubelegen.php
studbeleg.php
topframe.htm
ubersicht.php
ubersicht_themen.php
unangemeldet.php
doz
html2pdf_v4.03
htmlpurifier-4.10.0
images
prints
prints3
stud
Kennwortwechsel.php
Konzept Schwerpunktthemen.docx
hauptframe.php
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
topframe.php
schwerpunktthemen/admin/FCKeditor/_samples/html/sample06.config.js
2023-04-25 13:04:04 +02:00

50 lines
2.1 KiB
JavaScript
Executable File

/*
* FCKeditor - The text editor for Internet - https://www.fckeditor.net
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* https://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* https://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* https://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Sample custom configuration settings used in the plugin sample page (sample06).
*/
// Set our sample toolbar.
FCKConfig.ToolbarSets['PluginTest'] = [
['SourceSimple'],
['My_Find','My_Replace','-','Placeholder'],
['StyleSimple','FontFormatSimple','FontNameSimple','FontSizeSimple'],
['Table','-','TableInsertRow','TableDeleteRows','TableInsertColumn','TableDeleteColumns','TableInsertCell','TableDeleteCells','TableMergeCells','TableSplitCell'],
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink'],
'/',
['My_BigStyle','-','Smiley','-','About']
] ;
// Change the default plugin path.
FCKConfig.PluginsPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length - 7) + '_samples/_plugins/' ;
// Add our plugin to the plugins list.
// FCKConfig.Plugins.Add( pluginName, availableLanguages )
// pluginName: The plugin name. The plugin directory must match this name.
// availableLanguages: a list of available language files for the plugin (separated by a comma).
FCKConfig.Plugins.Add( 'findreplace', 'en,it,fr' ) ;
FCKConfig.Plugins.Add( 'samples' ) ;
// If you want to use plugins found on other directories, just use the third parameter.
var sOtherPluginPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length - 7) + 'editor/plugins/' ;
FCKConfig.Plugins.Add( 'placeholder', 'en,it,de,fr', sOtherPluginPath ) ;
FCKConfig.Plugins.Add( 'tablecommands', null, sOtherPluginPath ) ;
FCKConfig.Plugins.Add( 'simplecommands', null, sOtherPluginPath ) ;