2019-04 Update Mailversand
Archiv
Auswertung
admin
balance_img
fancybox
images
js
mail
standort
FCKeditor
_samples
_plugins
afp
asp
cfm
html
lasso
perl
php
sample01.php
sample02.php
sample03.php
sample03a.php
sample04.php
sampleposteddata.php
py
default.html
sample.css
sampleslist.html
_testcases
editor
_documentation.html
_whatsnew.html
fckconfig.js
fckeditor.afp
fckeditor.asp
fckeditor.cfc
fckeditor.cfm
fckeditor.js
fckeditor.lasso
fckeditor.php
fckeditor.pl
fckeditor.py
fckstyles.xml
fcktemplates.xml
htaccess.txt
license.txt
anschreiben
images
prints
browserSniffer.js
dynCalendar.css
dynCalendar.js
hauptframe.php
hauptframe_jahr.php
index.php
index_frame.htm
jahrgang.php
kennwortwechsel.php
logout.php
mail_teilnehmer.php
mail_teilnehmer_alt.php
mail_teilnehmer_neu.php
menuframe.php
pers_daten_ver.php
termine.php
topframe.php
vert_bereich.php
stud
#pdf_gen.php
#pdf_gen_alt.php
#pdf_gen_ges_lubu.php
#pdf_gen_kehl.php
#pdf_gen_kehl_alt.php
#pdf_gen_kehl_neu.php
#pdf_gen_neu.php
++ Printqueue zurücksetzen.txt.lnk
.gitignore
Auswertung_besuchte Stellen der Studs - alle Jahrgänge.sql
Auswertung_besuchte Stellen der Studs.sql
Pflicht.sql
Trigger.sql
VIEW_stan_zuw_so.sql
VIEW_stan_zuw_so_neu.sql
anz_anm.php
bearbeiten_neu.php
historie.php
historie_alt.php
historie_neu.php
index.php
index_db.php
index_ldap.php
ldap_info.php
ldap_info_hsnet.php
login.css
menuframe.php
styles_pc.css
test.html
umzugsverguetung.sql
85 lines
2.6 KiB
PHP
Executable File
85 lines
2.6 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 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: sample03.php
|
|
* Sample page.
|
|
*
|
|
* File Authors:
|
|
* Frederico Caldeira Knabben (fredck@fckeditor.net)
|
|
*/
|
|
|
|
include("../../fckeditor.php") ;
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>FCKeditor - Sample</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript">
|
|
|
|
function FCKeditor_OnComplete( editorInstance )
|
|
{
|
|
var oCombo = document.getElementById( 'cmbToolbars' ) ;
|
|
oCombo.value = editorInstance.ToolbarSet.Name ;
|
|
oCombo.style.visibility = '' ;
|
|
}
|
|
|
|
function ChangeToolbar( toolbarName )
|
|
{
|
|
window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>FCKeditor - PHP - Sample 3</h1>
|
|
This sample shows how to change the editor toolbar.
|
|
<hr>
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<tr>
|
|
<td>
|
|
Select the toolbar to load:
|
|
</td>
|
|
<td>
|
|
<select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden">
|
|
<option value="Default" selected>Default</option>
|
|
<option value="Basic">Basic</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<form action="sampleposteddata.php" method="post" target="_blank">
|
|
<?php
|
|
// Automatically calculates the editor base path based on the _samples directory.
|
|
// This is usefull only for these samples. A real application should use something like this:
|
|
// $oFCKeditor->BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
|
$sBasePath = $_SERVER['PHP_SELF'] ;
|
|
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
|
|
|
|
$oFCKeditor = new FCKeditor('FCKeditor1') ;
|
|
$oFCKeditor->BasePath = $sBasePath ;
|
|
|
|
if ( isset($_GET['Toolbar']) )
|
|
$oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']);
|
|
|
|
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
|
$oFCKeditor->Create() ;
|
|
?>
|
|
<br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html>
|