Initial commit for temporary serving.

This commit is contained in:
2024-02-07 13:11:24 +01:00
commit b26c4881ba
2445 changed files with 99872 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<input type="text" name="content" id="content" value="" class="headline"/>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
</div>
</form>

56
1.0.4/templates/image.php Normal file
View File

@@ -0,0 +1,56 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 27.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="navId" id="navId" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<input type="hidden" name="imgExtension" id="imgExtension" value=""/>
<input type="hidden" name="imgOrigname" id="imgOrigname" value=""/>
<input type="hidden" name="previewHeight" id="previewHeight" value=""/>
<input type="hidden" name="previewLeft" id="previewLeft" value=""/>
<input type="hidden" name="previewTop" id="previewTop" value=""/>
<input type="hidden" name="previewWidth" id="previewWidth" value=""/>
<input type="hidden" name="uploadFile" id="uploadFile" value="" disabled="disabled"/>
<input type="hidden" name="hasSlider" value="N"/>
<input type="hidden" name="sliderContent" value=""/>
<div>
<div id="imagePlaceholder">
<div id="imageCover">
<div id="coverTop"></div>
<div id="coverRight"></div>
<div id="coverBottom"></div>
<div id="coverLeft"></div>
</div>
<div id="imagePreview"></div>
</div>
<label for="imgName"><?php echo $lang['image']['imageName']; ?></label><input type="text" name="imgName" id="imgName" value=""/><br/>
<label for="imgTitle"><?php echo $lang['image']['imageTitle']; ?></label><input type="text" name="imgTitle" id="imgTitle" value=""/><br/>
<label for="changeUploadFile"><?php echo $lang['image']['newUpload']; ?></label><input type="file" name="changeUploadFile" id="changeUploadFile" class="uploadFile"/><br/>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" class="submitButton formCancel" value="<?php echo $lang['button']['cancel']; ?>">
</div>
</div>

View File

@@ -0,0 +1,105 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="navId" id="navId" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<input type="hidden" name="imgExtension" id="imgExtension" value=""/>
<input type="hidden" name="imgOrigname" id="imgOrigname" value=""/>
<input type="hidden" name="previewHeight" id="previewHeight" value=""/>
<input type="hidden" name="previewLeft" id="previewLeft" value=""/>
<input type="hidden" name="previewTop" id="previewTop" value=""/>
<input type="hidden" name="previewWidth" id="previewWidth" value=""/>
<input type="hidden" name="uploadFile" id="uploadFile" value="" disabled="disabled"/>
<input type="hidden" name="sliderContent" id="sliderContent" value=""/>
<input type="hidden" name="formAction" id="formAction" value=""/>
<div class="editor_slider">
<div class="inner">
<div id="newSort_box" class="box">
<ul id="imgThumbs"></ul>
</div>
<div class="rightBox editFields box">
<h1><?php echo $lang['image']['editHeadline']; ?></h1>
<p><?php echo $lang['image']['editHint']; ?></p>
<input id="sortButton" type="button" class="submitButton" value="<?php echo $lang['image']['sort']; ?>"/>
<br class="fix"/>&nbsp;<br/>
</div>
<div class="rightBox deleteFields box">
<h1><?php echo $lang['image']['deleteHeadLine']; ?></h1>
<p><?php echo $lang['image']['deleteHint']; ?></p>
<input type="hidden" name="firstImage" id="firstImage" value=""/>
<div>
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" id="deleteCancel" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>">
</div>
<br class="fix"/>&nbsp;<br/>
</div>
<div class="rightBox sortFields box">
<h1><?php echo $lang['image']['sortHeadLine']; ?></h1>
<p><?php echo $lang['image']['sortHint']; ?></p>
<input type="hidden" name="hasSlider" value="Y"/>
<div>
<input type="button" id="sortSave" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" id="sortCancel" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>">
</div>
<br class="fix"/>&nbsp;<br/>
</div>
<div class="rightBox uploadFields box">
<h1><?php echo $lang['image']['uploadHeadLine']; ?></h1>
<p><?php echo $lang['image']['uploadHint']; ?></p><br/>
<label for="newUploadFile"><?php echo $lang['image']['newUpload']; ?></label><input type="file" name="newUploadFile" id="newUploadFile" class="uploadFile"/><br/>
<input type="button" class="submitButton hidden" value="<?php echo $lang['button']['save']; ?>">
<input type="button" id="uploadCancel" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>">
<br class="fix"/>&nbsp;<br/>
</div>
</div>
<div class="inner">
<div id="imagePlaceholder">
<div id="imageCover">
<div id="coverTop"></div>
<div id="coverRight"></div>
<div id="coverBottom"></div>
<div id="coverLeft"></div>
</div>
<div id="imagePreview"></div>
</div>
<div class="editFields">
<label for="imgName"><?php echo $lang['image']['imageName']; ?></label><input type="text" name="imgName" id="imgName" value=""/><br/>
<label for="imgTitle"><?php echo $lang['image']['imageTitle']; ?></label><input type="text" name="imgTitle" id="imgTitle" value=""/><br/>
<div id="imageSlider">
<label><?php echo $lang['image']['keyvisualType']; ?></label>
<input type="radio" name="hasSlider" id="hasSlider_N" value="N"/><label for="hasSlider_N"><?php echo $lang['image']['imageSingle']; ?></label>
<input type="radio" name="hasSlider" id="hasSlider_Y" value="Y"/><label for="hasSlider_Y"><?php echo $lang['image']['imageSlider']; ?></label><br/>
</div>
</div>
<label for="changeUploadFile"><?php echo $lang['image']['newUpload']; ?></label><input type="file" name="changeUploadFile" id="changeUploadFile" class="uploadFile"/><br/>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" class="submitButton formPrev" value="<?php echo $lang['button']['prev']; ?>">
</div>
</div>
</div>
</form>

View File

@@ -0,0 +1,96 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="siteId" id="siteId" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<input type="hidden" name="spieldauer" value="regular"/>
<div class="editor_slider">
<div class="inner">
<label for="headline"><?php echo $lang['spielbericht']['headline']; ?></label>
<input type="text" name="headline" id="headline" value=""/><br class="fix"/>
<label for="datum"><?php echo $lang['spielbericht']['date']; ?></label>
<input type="date" name="datum" id="datum" value=""/><br/>
<label for="teamname"><?php echo $lang['spielbericht']['team']; ?></label>
<select name="teamname" id="teamname"></select><br/>
<label for="spieltyp"><?php echo $lang['spielbericht']['typ']; ?></label>
<select name="spieltyp" id="spieltyp"></select><br/>
<label for="verschoben"><?php echo $lang['spielbericht']['delayed']; ?></label>
<input type="date" name="verschoben" id="verschoben" value=""/><br/>
<label for="spieldauer"><?php echo $lang['spielbericht']['dauer']; ?></label>
<select name="spieldauer" id="spieldauer"></select><br/>
<label for="gegner"><?php echo $lang['spielbericht']['gegner']; ?></label>
<input type="text" name="gegner" id="gegner" value=""/><br/>
<label for="heimspiel"><?php echo $lang['spielbericht']['ort']; ?></label>
<input type="radio" name="heimspiel" id="heimspiel_Y" value="Y"/><label for="heimspiel_Y"><?php echo $lang['spielbericht']['heim']; ?></label><input type="radio" name="heimspiel" id="heimspiel_N" value="N"/><?php echo $lang['spielbericht']['auswaerts']; ?><br/>
<label><?php echo $lang['spielbericht']['halbzeit']; ?></label>
<input type="text" class="tiny" name="heimtoreHalb" id="heimtoreHalb" value=""/><label class="tiny">&nbsp;:&nbsp;</label><input type="text" class="tiny" name="gasttoreHalb" id="gasttoreHalb" value=""/><br/>
<label><?php echo $lang['spielbericht']['ende']; ?></label>
<input type="text" class="tiny" name="heimtoreEnd" id="heimtoreEnd" value=""/><label class="tiny">&nbsp;:&nbsp;</label><input type="text" class="tiny" name="gasttoreEnd" id="gasttoreEnd" value=""/><br/>
<label for="spieler"><?php echo $lang['spielbericht']['spieler']; ?></label>
<textarea name="spieler" id="spieler"></textarea><br/>
<label for="tore"><?php echo $lang['spielbericht']['tore']; ?></label>
<textarea name="tore" id="tore"></textarea><br/>
<label for="besonderes"><?php echo $lang['spielbericht']['besonderes']; ?></label>
<textarea name="besonderes" id="besonderes"></textarea><br/>
<label for="vorschau"><?php echo $lang['spielbericht']['vorschau']; ?></label>
<textarea name="vorschau" id="vorschau"></textarea><br/>
<div class="bottom">
<input type="button" class="submitButton formNext" value="<?php echo $lang['button']['next']; ?>">
<input type="button" class="submitButton formCancel" value="<?php echo $lang['button']['cancel']; ?>">
</div>
</div>
<div class="inner">
<textarea class="ckeditor" name="text" id="text"></textarea>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" class="submitButton formPrev" value="<?php echo $lang['button']['prev']; ?>">
</div>
</div>
</div>
<script>
initEditor();
function initEditor() {
if (editor.contentData === null) {
window.setTimeout(initEditor, 50);
return false;
}
CKEDITOR.replace('text', {
enterMode: CKEDITOR.ENTER_P,
extraPlugins: 'divarea',
height: '500px',
language: '<?php echo $_POST['lang']; ?>',
toolbarGroups: [
{name: 'clipboard', groups: ['clipboard', 'undo']},
{name: 'editing', groups: ['find', 'selection', 'spellchecker']},
{name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
{name: 'paragraph', groups: ['list']},
{name: 'links'},
{name: 'about'}
]
});
}
</script>
</form>

View File

@@ -0,0 +1,127 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="siteId" id="siteId" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="navStart" id="navStart" value=""/>
<input type="hidden" name="navId" id="navId" value=""/>
<div id="struktur"></div>
<div id="navPoint" class="box">
<p class="headline"><b><?php echo $lang['struktur']['editing']; ?></b></p>
<p id="breadCrumb"></p>
<div id="showAction">
</div>
</div>
</form>
<div id="actionTemplates" class="hidden">
<div class="actionChooser">
<span data-show="Rename" class="submitButton" title="<?php echo $lang['struktur']['renameHelper']; ?>"><?php echo $lang['struktur']['rename']; ?></span><br class="fix"/>
<span data-show="Activate" class="submitButton" title="<?php echo $lang['struktur']['activateHelper']; ?>"><?php echo $lang['struktur']['activate']; ?></span><br class="fix"/>
<span data-show="Deactivate" class="submitButton" title="<?php echo $lang['struktur']['deactivateHelper']; ?>"><?php echo $lang['struktur']['deactivate']; ?></span><br class="fix"/>
<span data-show="Sort" class="submitButton checkSort" title="<?php echo $lang['struktur']['sortHelper']; ?>"><?php echo $lang['struktur']['sort']; ?></span><br class="fix"/>
<span data-show="Move" class="submitButton" title="<?php echo $lang['struktur']['moveHelper']; ?>"><?php echo $lang['struktur']['move']; ?></span><br class="fix"/>
<span data-show="Submenu" class="submitButton" title="<?php echo $lang['struktur']['submenuHelper']; ?>"><?php echo $lang['struktur']['submenu']; ?></span><br class="fix"/>
<span data-show="Menu" class="submitButton" title="<?php echo $lang['struktur']['menuHelper']; ?>"><?php echo $lang['struktur']['menu']; ?></span><br class="fix"/>
</div>
<div class="actionRename">
<input type="hidden" name="formAction" value="renameNavPoint"/>
<input type="hidden" name="request" value="updateData"/>
<label for="navName"><?php echo $lang['struktur']['navNameRename']; ?></label><input type="text" name="navName" id="navName" value=""/>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionActivate">
<input type="hidden" name="formAction" value="updateActive"/>
<input type="hidden" name="request" value="updateData"/>
<input type="hidden" name="navActive" value="Y"/>
<p><?php echo $lang['struktur']['navNameEnable']; ?></p>
<input type="text" name="navName" id="navName" value="" disabled="disabled"/>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionDeactivate">
<input type="hidden" name="formAction" value="updateActive"/>
<input type="hidden" name="request" value="updateData"/>
<input type="hidden" name="navActive" value="N"/>
<p><?php echo $lang['struktur']['navNameDisable']; ?></p>
<input type="text" name="navName" id="navName" value="" disabled="disabled"/>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionSort">
<input type="hidden" name="formAction" value="sortNavPoint"/>
<input type="hidden" name="request" value="updateData"/>
<input type="hidden" name="newSort" class="newSort" value=""/>
<p><?php echo $lang['struktur']['newSort']; ?></p>
<div>
<ul class="navSort box"></ul>
</div>
<div id="bottom">
<input type="button" class="submitButton formSubmit hidden" value="<?php echo $lang['button']['save']; ?>"/>
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionMove">
<input type="hidden" name="formAction" value="moveNavPoint"/>
<input type="hidden" name="request" value="updateData"/>
<p><?php echo $lang['struktur']['navNameMove'][0]; ?></p>
<input type="text" name="navName" id="navName" value="" disabled="disabled"/><br class="fix"/>
<p><?php echo $lang['struktur']['navNameMove'][1]; ?></p>
<input type="text" name="parentNavName" id="parentNavName" value="" disabled="disabled"/><br class="fix"/>
<div id="otherMain_box">
</div>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionSubmenu">
<input type="hidden" name="formAction" value="addSubNav"/>
<input type="hidden" name="request" value="insertData"/>
<p><?php echo $lang['struktur']['newSubMenu']; ?></p>
<input type="text" name="navName" id="navName" value="" disabled="disabled"/><br class="fix"/>
<label for="new_subnavName"><?php echo $lang['struktur']['newNavName']; ?></label><input type="text" name="new_subnavName" id="new_subnavName" value=""/><br class="fix"/>
<label for="new_subnavType"><?php echo $lang['struktur']['newNavType']; ?></label><select name="new_subnavType" id="new_subnavType" class="navigationType"></select><br class="fix"/>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
<div class="actionMenu">
<input type="hidden" name="formAction" value="addNavPoint"/>
<input type="hidden" name="request" value="insertData"/>
<p><?php echo $lang['struktur']['newMenu']; ?></p>
<input type="text" name="navName" id="navName" value="" disabled="disabled"/><br class="fix"/>
<label for="new_navName"><?php echo $lang['struktur']['newNavName']; ?></label><input type="text" name="new_navName" id="new_navName" value=""/><br class="fix"/>
<label for="new_navType"><?php echo $lang['struktur']['newNavType']; ?></label><select name="new_navType" id="new_navType" class="navigationType"></select><br class="fix"/>
<div id="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input data-show="Chooser" type="button" class="submitButton" value="<?php echo $lang['button']['cancel']; ?>"/>
</div>
</div>
</div>

View File

@@ -0,0 +1,30 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<input type="text" name="content" id="content" value="" class="subline"/>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
</div>
</form>

56
1.0.4/templates/text.php Normal file
View File

@@ -0,0 +1,56 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<textarea class="ckeditor" name="content" id="content"></textarea>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" class="submitButton formCancel" value="<?php echo $lang['button']['cancel']; ?>">
</div>
<script>
initEditor();
function initEditor() {
if (editor.contentData === null) {
window.setTimeout(initEditor, 50);
return false;
}
CKEDITOR.replace('content', {
enterMode: CKEDITOR.ENTER_P,
extraPlugins: 'divarea',
height: '500px',
language: '<?php echo $_POST['lang']; ?>',
toolbarGroups: [
{name: 'clipboard', groups: ['clipboard', 'undo']},
{name: 'editing', groups: ['find', 'selection', 'spellchecker']},
{name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
{name: 'paragraph', groups: ['list']},
{name: 'links'},
{name: 'about'}
]
});
}
</script>
</form>

View File

@@ -0,0 +1,32 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 12.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Access-Control-Allow-Origin: *');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_POST['lang'] . '.php';
}
include_once($includeFile);
?>
<form id="editor_form" action="" method="post">
<input type="hidden" name="userId" id="userId" value=""/>
<input type="hidden" name="prefix" id="prefix" value=""/>
<input type="hidden" name="dataSet" id="dataSet" value=""/>
<input type="hidden" name="request" id="request" value="updateData"/>
<label for="wettbewerb"><?php echo $lang['widget']['wettbewerb']; ?></label><input type="text" name="wettbewerb" id="wettbewerb" value=""/>
<div class="bottom">
<input type="button" class="submitButton formSubmit" value="<?php echo $lang['button']['save']; ?>">
<input type="button" class="submitButton formCancel" value="<?php echo $lang['button']['cancel']; ?>">
</div>
</form>