Knowledgebase:Version 3.2.0 Anwendungsseiten

From Cloudrexx Development Wiki
Jump to: navigation, search

Anleitung

Bevor Sie diesen Artikel lesen, empfehlen wir Ihnen folgenden Artikel: Update auf Version 3.2.


Betroffene Anwendung

Zu jeder hier aufgeführten Vorlage ist angegeben, um welche Anwendungsseite es sich dabei genau handelt. Beispiel:

Anwendung Bereich
newsletter
newsletter subscribe

Bei diesem Beispiel handelt es sich um die Anwendungsseite, welche im Content Editor unter Anwendung im Reiter Mehr die Anwendung Newsletter zugewiesen, sowie als Bereich den Wert subscribe eingetragen hat.

Betroffene Version

Zusätzlich wird bei jeder Vorlage angegeben, welche Ausgangsversionen von der Änderung betroffen sind. Beispiel:

Ausgangsversion
älter als 3.0 SP1

Dieses Beispiel besagt, dass die angegebene Anwendungsseite aktualisiert werden muss, sofern von einer älteren Version als 3.0 SP1 aus das Update ausgeführt wurde.

Vorlagen

Suche

Ausgangsversion
älter als 3.0
Anwendung Bereich
search

<form action="index.php" method="get">
	<input type="hidden" name="section" value="search" />
	<input type="text" name="term" value="[[SEARCH_TERM]]" />
	<input type="submit" name="submit" value="[[TXT_SEARCH]]" />
</form><br />

[[SEARCH_TITLE]]<br /><br />

<!-- BEGIN search_result -->
	[[LINK]] [[COUNT_MATCH]]<br />
	[[SHORT_CONTENT]]<br /><br />
<!-- END search_result -->

[[SEARCH_PAGING]]

Veranstaltungskalender

Ausgangsversion
älter als 3.1

Veranstaltungen

Anwendung Bereich
calendar

[[CALENDAR_JAVASCRIPT]]

<form action="index.php" method="get">
<input name="section" value="[[CALENDAR_MODULE_NAME]]" type="hidden"/>
<p><label>[[TXT_CALENDAR_SEARCH_TERM]]</label><input name="term" value="[[CALENDAR_SEARCH_TERM]]" type="text"/></p>
<p><label>[[TXT_CALENDAR_FROM]]</label><input name="from" id="[[CALENDAR_SEARCH_START_DATE_INPUT_ID]]" value="[[CALENDAR_SEARCH_FROM]]" type="text" /></p>
<p><label>[[TXT_CALENDAR_TILL]]</label><input name="till" id="[[CALENDAR_SEARCH_END_DATE_INPUT_ID]]" value="[[CALENDAR_SEARCH_TILL]]" type="text"/></p>
<p><label>[[TXT_CALENDAR_CATEGORY]]</label><select name="catid">[[CALENDAR_SEARCH_CATEGORIES]]</select></p>
<p><input name="search" value="[[TXT_CALENDAR_SEARCH]]" type="submit"/>
</form>
<br /><br />
<!-- <form action="index.php" method="get" name="calendarSearch" >
<input name="section" value="[[CALENDAR_MODULE_NAME]]" type="hidden"/>
<select name="catid" onchange="document.calendarSearch.submit();">[[CALENDAR_SEARCH_CATEGORIES]]</select>
</form><br /> -->
<table cellspacing="0">
    <tbody> 
        <tr>
            <td><h2>Wann</h2></td>
            <td><h2>Anlass</h2></td>
            <td><h2>Wo</h2></td>
        </tr>
        <!-- BEGIN eventList -->
        <tr>
            <td width="20%" align="left" valign="top" nowrap="nowrap">
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->
            </td>
            <td width="40%" valign="top"><a href="[[CALENDAR_EVENT_DETAIL_LINK]]" target="[[CALENDAR_EVENT_DETAIL_TARGET]]">[[CALENDAR_EVENT_TITLE]]</a></td>
            <td width="40%" valign="top">[[CALENDAR_EVENT_PLACE]]</td>
        </tr>
        <!-- END eventList -->  
        <!-- BEGIN emptyEventList -->
        <tr>
            <td colspan="3"><i>[[TXT_CALENDAR_NO_EVENTS]]</i></td>
        </tr>    
        <!-- END emptyEventList -->
    </tbody>
</table>

<br />
[[CALENDAR_PAGING]]

Auflistung aller Veranstaltungen

Hatte bisher den Bereich "eventlist".

Anwendung Bereich
calendar list

[[CALENDAR_JAVASCRIPT]]

<form action="index.php" method="get" name="calendarSearch" >
<input name="section" value="[[CALENDAR_MODULE_NAME]]" type="hidden"/>
<input name="cmd" value="list" type="hidden"/>
<p><label>[[TXT_CALENDAR_CATEGORY]]</label><select name="catid" onchange="document.calendarSearch.submit();">[[CALENDAR_SEARCH_CATEGORIES]]</select></p>
</form>
<br />
<table cellspacing="0">
    <tbody> 
        <tr>
            <td><h2>Wann</h2></td>
            <td><h2>Anlass</h2></td>
            <td><h2>Wo</h2></td>
        </tr>
        <!-- BEGIN eventList -->
        <tr>
            <td width="20%" align="left" valign="top" nowrap="nowrap">
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->
            </td>
            <td width="40%" valign="top"><a href="[[CALENDAR_EVENT_DETAIL_LINK]]" target="[[CALENDAR_EVENT_DETAIL_TARGET]]">[[CALENDAR_EVENT_TITLE]]</a></td>
            <td width="40%" valign="top">[[CALENDAR_EVENT_PLACE]]</td>
        </tr>
        <!-- END eventList -->  
        <!-- BEGIN emptyEventList -->
        <tr>
            <td colspan="3"><i>[[TXT_CALENDAR_NO_EVENTS]]</i></td>
        </tr>    
        <!-- END emptyEventList -->
    </tbody>
</table>
<br />
[[CALENDAR_PAGING]]

Quartalsübersicht

Anwendung Bereich
calendar boxes

<!-- START calendar_show.html --> 
<script type="text/javascript">
    $J(document).ready(function() {
        $J('#calendar li:last').css({
            'border': 0,
            'padding': 0
        });
    });
</script>

[[CALENDAR_JAVA_SCRIPT]]

<div id="calendar">
    <!-- BEGIN boxes -->
    <div class="categories">
        <select name="catid" id="selectcat" onchange="changecat();">
            [[CALENDAR_CATEGORIES]]
        </select>
    </div>
    <div id="calendar-boxes">[[CALENDAR_BOX]]</div>
    <!-- END boxes -->  
    <!-- BEGIN list -->
    <ul class="event-list">
        <!-- BEGIN eventList -->
        <li>
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->

            <a href="[[CALENDAR_EVENT_DETAIL_LINK]]" target="[[CALENDAR_EVENT_DETAIL_TARGET]]">[[CALENDAR_EVENT_TITLE]]</a>
            [[CALENDAR_EVENT_PLACE]]
        </li>
        <!-- END eventList -->
        <!-- BEGIN emptyEventList -->
        <li>
            <i>[[TXT_CALENDAR_NO_EVENTS]]</i>
        <li>    
        <!-- END emptyEventList -->
    </ul>
    <!-- END list -->

</div>
<!-- END calendar_show.html -->

Kategorisierte Anzeige

Ist eine neue Seite.

Anwendung Bereich
calendar category

[[CALENDAR_JAVASCRIPT]]
<form name="calendarSearch" method="get" action="index.php">
    <input type="hidden" value="[[CALENDAR_MODULE_NAME]]" name="section" /> <input type="hidden" value="category" name="cmd" />
    <p><label>[[TXT_CALENDAR_CATEGORY]]</label><select onchange="document.calendarSearch.submit();" name="catid">[[CALENDAR_SEARCH_CATEGORIES]]</select></p>
</form>
<br />
<!-- BEGIN categoryList -->
<div style="width: 100%; float: left; height: auto !important;">
<h2>[[CALENDAR_CATEGORY_NAME]]</h2>
<table cellspacing="0" style="width: 100& !important;">
    <tbody>
        <tr>
            <th>Wann</th>
            <th>Anlass</th>
            <th>Wo</th>
        </tr>
        <!-- BEGIN eventList -->
        <tr class="[[CALENDAR_EVENT_ROW]]">
            <td width="20%" valign="top" nowrap="nowrap" align="left">
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->
            </td>
            <td width="40%" valign="top"><a target="[[CALENDAR_EVENT_DETAIL_TARGET]]" href="[[CALENDAR_EVENT_DETAIL_LINK]]">[[CALENDAR_EVENT_TITLE]]</a></td>
            <td width="40%" valign="top">[[CALENDAR_EVENT_PLACE]]</td>
        </tr>
        <!-- END eventList -->           
        <!-- BEGIN emptyEventList -->
        <tr class="[[CALENDAR_EVENT_ROW]]">
            <td colspan="3"><i>[[TXT_CALENDAR_NO_EVENTS]]</i></td>
        </tr>
        <!-- END emptyEventList -->
    </tbody>
</table>
<br />
</div>
<!-- END categoryList -->

Archiv

Ist eine neue Seite.

Anwendung Bereich
calendar archive

[[CALENDAR_JAVASCRIPT]]
<form name="calendarSearch" method="get" action="index.php">
    <input type="hidden" value="[[CALENDAR_MODULE_NAME]]" name="section" /> <input type="hidden" value="archive" name="cmd" />
    <p><label>[[TXT_CALENDAR_CATEGORY]]</label><select onchange="document.calendarSearch.submit();" name="catid">[[CALENDAR_SEARCH_CATEGORIES]]</select></p>
</form>
<br />
<table cellspacing="0">
    <tbody> 
        <tr>
            <td><h2>Wann</h2></td>
            <td><h2>Anlass</h2></td>
            <td><h2>Wo</h2></td>
        </tr>
        <!-- BEGIN eventList -->
        <tr>
            <td width="20%" align="left" valign="top" nowrap="nowrap">
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->
            </td>
            <td width="40%" valign="top"><a href="[[CALENDAR_EVENT_DETAIL_LINK]]" target="[[CALENDAR_EVENT_DETAIL_TARGET]]">[[CALENDAR_EVENT_TITLE]]</a></td>
            <td width="40%" valign="top">[[CALENDAR_EVENT_PLACE]]</td>
        </tr>
        <!-- END eventList -->  
        <!-- BEGIN emptyEventList -->
        <tr>
            <td colspan="3"><i>[[TXT_CALENDAR_NO_EVENTS]]</i></td>
        </tr>    
        <!-- END emptyEventList -->
    </tbody>
</table>
<br />
[[CALENDAR_PAGING]]

Veranstaltung erfassen

Ist eine neue Seite.

Anwendung Bereich
calendar add

<div id="calendar">
    [[CALENDAR_JAVASCRIPT]]

    <!-- BEGIN calendarEventOkMessage -->
    Eintrag erfolgreich gespeichert. Sie werden benachrichtigt, sobald dieser erfolgreich geprüft und aufgeschaltet wurde.<br /><br />
    <!-- END calendarEventOkMessage -->

    <!-- BEGIN calendarEventErrMessage -->
    Bein Speichern trat ein Fehler auf. Bitte versuchen sie es erneut.<br /><br />
    <!-- END calendarEventErrMessage -->

    <!-- BEGIN calendarEventModifyForm -->
    <form enctype="multipart/form-data" method="post" action="[[NODE_CALENDAR_ADD]]" name="formModifyEvent" id="formModifyEvent">
        <input type="hidden" name="id" value="[[CALENDAR_EVENT_ID]]" />
        <input type="hidden" name="map_id" value="[[CALENDAR_MAP_ID]]" />
        <input type="hidden" name="picture_id" value="[[CALENDAR_PICTURE_ID]]" />

        <fieldset class="show_in" style="[[CALENDAR_HIDE_ON_SINGLE_LANG]]">
            <legend>[[TXT_CALENDAR_LANGUAGE]]</legend>
            <!-- BEGIN eventShowIn -->
            <label><input data-id="[[CALENDAR_EVENT_LANG_ID]]" class="lang_check" name="showIn[]" id="showIn_[[CALENDAR_EVENT_LANG_ID]]" value="[[CALENDAR_EVENT_LANG_ID]]" type="checkbox" [[CALENDAR_EVENT_LANG_CHECKED]] /> [[TXT_CALENDAR_EVENT_LANG_NAME]]   </label>
            <!-- END eventShowIn -->
        </fieldset>
        <br />
        <fieldset>
            <legend>[[TXT_CALENDAR_EVENT]]</legend>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_START]] <font color="#ff0000">*</font></label>
                <input type="text"  name="startDate" class="startDate validate[required]" id="startDate" value="[[CALENDAR_EVENT_START_DATE]]" />
                 <label style="float: none;"><input style="float: none;" type="checkbox" class="all_day" name="all_day" [[CALENDAR_EVENT_ALL_DAY]] value="1" /> [[TXT_CALENDAR_EVENT_ALL_DAY]] </label>
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_END]] <font color="#ff0000">*</font></label>
                <input type="text" name="endDate" class="endDate validate[required]" id="endDate" value="[[CALENDAR_EVENT_END_DATE]]" />
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_TYPE]]</label>
                <select id="event-type" name="type">
                    <option value="0" [[CALENDAR_EVENT_TYPE_EVENT]]>[[TXT_CALENDAR_EVENT_TYPE_EVENT]]</option>
                    <option value="1" [[CALENDAR_EVENT_TYPE_REDIRECT]]>[[TXT_CALENDAR_EVENT_TYPE_REDIRECT]]</option>                                                                            
                </select>
            </div>
            <div id="event-tabs">
                <ul style="[[CALENDAR_HIDE_ON_SINGLE_LANG]]">
                    <!-- BEGIN eventTabMenuDescTab -->
                    <li id="eventDescTab_[[CALENDAR_EVENT_LANG_ID]]"><a class="[[CALENDAR_EVENT_TAB_CLASS]]" href="#event-tab-[[CALENDAR_EVENT_LANG_ID]]" title="[[TXT_CALENDAR_EVENT_LANG_NAME]]">[[TXT_CALENDAR_EVENT_LANG_NAME]]</a></li>
                    <!-- END eventTabMenuDescTab -->
                </ul>
                <!-- BEGIN eventDescTab -->
                <div class="event-tabs-des-box" id="event-tab-[[CALENDAR_EVENT_LANG_ID]]">
                    <div class="row">
                        <label>[[TXT_CALENDAR_EVENT_TITLE]] <font color="#ff0000">*</font></label><input data-id="[[CALENDAR_EVENT_LANG_ID]]" name="title[[[CALENDAR_EVENT_LANG_ID]]]" class="validate[event_title]" type="text" value="[[CALENDAR_EVENT_TITLE]]" />
                    </div>
                    <div class="row event-description" style="display: [[CALENDAR_EVENT_TYPE_EVENT_DISPLAY]];">
                        <div>[[TXT_CALENDAR_EVENT_DESCRIPTION]]</div>
                        [[CALENDAR_EVENT_DESCRIPTION]]
                    </div>
                    <div class="row event-redirect" style="display: [[CALENDAR_EVENT_TYPE_REDIRECT_DISPLAY]];">
                        <label>[[TXT_CALENDAR_EVENT_TYPE_REDIRECT]]</label>
                        <input type="text" name="redirect[[[CALENDAR_EVENT_LANG_ID]]]" value="[[CALENDAR_EVENT_REDIRECT]]" />
                    </div>
                </div>
                <!-- END eventDescTab -->
            </div>            
        </fieldset>
        <br />
        <fieldset id="place">
            <legend>[[TXT_CALENDAR_EVENT_PLACE]]</legend>
            <!-- BEGIN eventPlaceTypeRadio -->
            <div class="row">
                    <input type="radio" name="eventLocationType" class="eventLocationType" id ="eventLocationTypeManual" value="1" [[CALENDAR_EVENT_LOCATION_TYPE_MANUAL]] /> <label for="eventLocationTypeManual">[[TXT_CALENDAR_PLACE_DATA_DEFAULT]]</label>
                    <input type="radio" name="eventLocationType" class="eventLocationType" id ="eventLocationTypeMediadir" value="2" [[CALENDAR_EVENT_LOCATION_TYPE_MEDIADIR]] /> <label for="eventLocationTypeMediadir">[[TXT_CALENDAR_PLACE_DATA_FROM_MEDIADIR]]</label>
            </div>
            <!-- END eventPlaceTypeRadio -->
            <!-- BEGIN eventPlaceInput -->
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_PLACE]]</label>
                <input name="place" type="text" value="[[CALENDAR_EVENT_PLACE]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_STREET]]</label>
                <input name="street" type="text" value="[[CALENDAR_EVENT_STREET]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_ZIP]]</label>
                <input name="zip" type="text" value="[[CALENDAR_EVENT_ZIP]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_CITY]]</label>
                <input name="city" type="text" value="[[CALENDAR_EVENT_CITY]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_COUNTRY]]</label>
                <input name="country" type="text" value="[[CALENDAR_EVENT_COUNTRY]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="placeLink" type="text" value="[[CALENDAR_EVENT_PLACE_LINK]]" />                 
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_MAP]]</label>
                <div class="formUploadedFiles">
                    <div id="mapUpload_uploadWidget"></div>
                    <input type="file" name="mapUpload" id="mapUpload" />
                    <input type="hidden" name="placeMap" value="[[CALENDAR_EVENT_PLACE_MAP]]" />
                </div>
            </div>
            <!-- END eventPlaceInput -->
            <!-- BEGIN eventPlaceSelect -->
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_PLACE]]</label>
                <select name="placeMediadir">[[CALENDAR_EVENT_PLACE_OPTIONS]]</select>
            </div>
            <!-- END eventPlaceSelect -->
        </fieldset>
        <br/>
        <fieldset id="host">
            <legend>[[TXT_CALENDAR_EVENT_HOST]]</legend>
            <!-- BEGIN eventHostTypeRadio -->
            <div class="row">
                    <input type="radio" name="eventHostType" class="eventHostType" id ="eventHostTypeManual" value="1" [[CALENDAR_EVENT_HOST_TYPE_MANUAL]] /> <label for="eventHostTypeManual">[[TXT_CALENDAR_PLACE_DATA_DEFAULT]]</label>
                    <input type="radio" name="eventHostType" class="eventHostType" id ="eventHostTypeMediadir" value="2" [[CALENDAR_EVENT_HOST_TYPE_MEDIADIR]] /> <label for="eventHostTypeMediadir">[[TXT_CALENDAR_PLACE_DATA_FROM_MEDIADIR]]</label>
            </div>
            <!-- END eventHostTypeRadio -->
            <!-- BEGIN eventHostSelect -->
            <div class="row event_host_mediadir">
                <!--<label>[[TXT_CALENDAR_EVENT_PLACE]]</label>-->
                <label>[[TXT_CALENDAR_EVENT_HOST]]</label>
                <select name="hostMediadir">[[CALENDAR_EVENT_PLACE_OPTIONS]]</select>
            </div>
            <!-- END eventHostSelect -->
            <!-- BEGIN eventHostInput -->
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_NAME]]</label>
                <input name="organizerName" type="text" value="[[CALENDAR_EVENT_HOST]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_STREET]]</label>
                <input name="organizerStreet" type="text" value="[[CALENDAR_EVENT_HOST_ADDRESS]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_ZIP]]</label>
                <input name="organizerZip" type="text" value="[[CALENDAR_EVENT_HOST_ZIP]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_CITY]]</label>
                <input name="organizerCity" type="text" value="[[CALENDAR_EVENT_HOST_CITY]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_COUNTRY]]</label>
                <input name="organizerCountry" type="text" value="[[CALENDAR_EVENT_HOST_COUNTRY]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="organizerLink" type="text" value="[[CALENDAR_EVENT_HOST_LINK]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_EMAIL]]</label>
                <input name="organizerEmail" type="text" value="[[CALENDAR_EVENT_HOST_EMAIL]]" />                 
            </div>
            <!-- END eventHostInput -->
        </fieldset>
        <br/>
        <fieldset id="additionalinfos">
            <legend>[[TXT_CALENDAR_EVENT_DETAILS]]</legend>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="link" type="text" value="[[CALENDAR_EVENT_LINK]]" />
            </div>
            <div>
                <label>[[TXT_CALENDAR_EVENT_PICTURE]]</label>
                <div class="formUploadedFiles">
                    <div id="pictureUpload_uploadWidget"></div>
                    <input type="file" name="pictureUpload" id="pictureUpload" />
                    <input type="hidden" name="picture" value="[[CALENDAR_EVENT_PICTURE]]" />
                </div>
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_CATEGORY]] <font color="#ff0000">*</font></label>
                <select id="category" name="category" class="validate[required]">
                    [[CALENDAR_EVENT_CATEGORIES]]
                </select>
            </div>            
        </fieldset>
        <br />
        <div class="row"><input type="submit" value="[[TXT_CALENDAR_SAVE]]" name="submitFormModifyEvent" /></div>
        <div style="display: none; color: rgb(255, 0, 0);" id="calendarErrorMessage"><div class="row">[[TXT_CALENDAR_PLEASE_CHECK_INPUT]]</div></div>
    </form>
    <!-- END calendarEventModifyForm -->
</div>

Meine Veranstaltungen

Ist eine neue Seite.

Anwendung Bereich
calendar my_events

<div id="calendar">
<table cellspacing="0">
    <tbody> 
        <tr>
            <td><h2>Wann</h2></td>
            <td><h2>Anlass</h2></td>
<td><h2>Aktion</h2></td>
        </tr>
        <!-- BEGIN eventList -->
        <tr>
            <td width="20%" align="left" valign="top" nowrap="nowrap">
            <!-- BEGIN calendarDateList -->
            [[CALENDAR_DATE_LIST]][[CALENDAR_SEP_DATE_TIME_LIST]][[CALENDAR_TIME_LIST]][[TXT_CALENDAR_CLOCK_LIST]]
            <!-- END calendarDateList -->
            </td>
            <td width="40%" valign="top"><a href="[[CALENDAR_EVENT_DETAIL_LINK]]" target="[[CALENDAR_EVENT_DETAIL_TARGET]]">[[CALENDAR_EVENT_TITLE]]</a></td>
            <td width="40%" valign="top"><a href="[[CALENDAR_EVENT_EDIT_LINK]]">[[TXT_CALENDAR_EDIT]]</a></td>
        </tr>
        <!-- END eventList -->  
        <!-- BEGIN emptyEventList -->
        <tr>
            <td colspan="3"><i>[[TXT_CALENDAR_NO_EVENTS]]</i></td>
        </tr>    
        <!-- END emptyEventList -->
    </tbody>
</table>
<br />
[[CALENDAR_PAGING]]
</div>

Veranstaltung bearbeiten

Ist eine neue Seite.

Anwendung Bereich
calendar edit

<div id="calendar">
    [[CALENDAR_JAVASCRIPT]]

    <!-- BEGIN calendarEventOkMessage -->
    Eintrag erfolgreich gespeichert. Sie werden benachrichtigt, sobald dieser erfolgreich geprüft und aufgeschaltet wurde.<br /><br />
    <!-- END calendarEventOkMessage -->

    <!-- BEGIN calendarEventErrMessage -->
    Bein Speichern trat ein Fehler auf. Bitte versuchen sie es erneut.<br /><br />
    <!-- END calendarEventErrMessage -->

    <!-- BEGIN calendarEventModifyForm -->
    <form enctype="multipart/form-data" method="post" action="[[NODE_CALENDAR_EDIT]]" name="formModifyEvent" id="formModifyEvent">
        <input type="hidden" name="id" value="[[CALENDAR_EVENT_ID]]" />
        <input type="hidden" name="map_id" value="[[CALENDAR_MAP_ID]]" />
        <input type="hidden" name="picture_id" value="[[CALENDAR_PICTURE_ID]]" />

        <fieldset class="show_in" style="[[CALENDAR_HIDE_ON_SINGLE_LANG]]">
            <legend>[[TXT_CALENDAR_LANGUAGE]]</legend>
            <!-- BEGIN eventShowIn -->
            <label><input data-id="[[CALENDAR_EVENT_LANG_ID]]" class="lang_check" name="showIn[]" id="showIn_[[CALENDAR_EVENT_LANG_ID]]" value="[[CALENDAR_EVENT_LANG_ID]]" type="checkbox" [[CALENDAR_EVENT_LANG_CHECKED]] /> [[TXT_CALENDAR_EVENT_LANG_NAME]]   </label>
            <!-- END eventShowIn -->
        </fieldset>
        <br />
        <fieldset>
            <legend>[[TXT_CALENDAR_EVENT]]</legend>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_START]] <font color="#ff0000">*</font></label>
                <input type="text"  name="startDate" class="startDate validate[required]" id="startDate" value="[[CALENDAR_EVENT_START_DATE]]" />
                 <label style="float: none;"><input style="float: none;" type="checkbox" class="all_day" name="all_day" [[CALENDAR_EVENT_ALL_DAY]] value="1" /> [[TXT_CALENDAR_EVENT_ALL_DAY]] </label>
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_END]] <font color="#ff0000">*</font></label>
                <input type="text" name="endDate" class="endDate validate[required]" id="endDate" value="[[CALENDAR_EVENT_END_DATE]]" />
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_TYPE]]</label>
                <select id="event-type" name="type">
                    <option value="0" [[CALENDAR_EVENT_TYPE_EVENT]]>[[TXT_CALENDAR_EVENT_TYPE_EVENT]]</option>
                    <option value="1" [[CALENDAR_EVENT_TYPE_REDIRECT]]>[[TXT_CALENDAR_EVENT_TYPE_REDIRECT]]</option>                                                                            
                </select>
            </div>
            <div id="event-tabs">
                <ul style="[[CALENDAR_HIDE_ON_SINGLE_LANG]]">
                    <!-- BEGIN eventTabMenuDescTab -->
                    <li id="eventDescTab_[[CALENDAR_EVENT_LANG_ID]]"><a class="[[CALENDAR_EVENT_TAB_CLASS]]" href="#event-tab-[[CALENDAR_EVENT_LANG_ID]]" title="[[TXT_CALENDAR_EVENT_LANG_NAME]]">[[TXT_CALENDAR_EVENT_LANG_NAME]]</a></li>
                    <!-- END eventTabMenuDescTab -->
                </ul>
                <!-- BEGIN eventDescTab -->
                <div class="event-tabs-des-box" id="event-tab-[[CALENDAR_EVENT_LANG_ID]]">
                    <div class="row">
                        <label>[[TXT_CALENDAR_EVENT_TITLE]] <font color="#ff0000">*</font></label><input data-id="[[CALENDAR_EVENT_LANG_ID]]" name="title[[[CALENDAR_EVENT_LANG_ID]]]" class="validate[event_title]" type="text" value="[[CALENDAR_EVENT_TITLE]]" />
                    </div>
                    <div class="row event-description" style="display: [[CALENDAR_EVENT_TYPE_EVENT_DISPLAY]];">
                        <div>[[TXT_CALENDAR_EVENT_DESCRIPTION]]</div>
                        [[CALENDAR_EVENT_DESCRIPTION]]
                    </div>
                    <div class="row event-redirect" style="display: [[CALENDAR_EVENT_TYPE_REDIRECT_DISPLAY]];">
                        <label>[[TXT_CALENDAR_EVENT_TYPE_REDIRECT]]</label>
                        <input type="text" name="redirect[[[CALENDAR_EVENT_LANG_ID]]]" value="[[CALENDAR_EVENT_REDIRECT]]" />
                    </div>
                </div>
                <!-- END eventDescTab -->
            </div>            
        </fieldset>
        <br />
        <fieldset id="place">
            <legend>[[TXT_CALENDAR_EVENT_PLACE]]</legend>
            <!-- BEGIN eventPlaceTypeRadio -->
            <div class="row">
                    <input type="radio" name="eventLocationType" class="eventLocationType" id ="eventLocationTypeManual" value="1" [[CALENDAR_EVENT_LOCATION_TYPE_MANUAL]] /> <label for="eventLocationTypeManual">[[TXT_CALENDAR_PLACE_DATA_DEFAULT]]</label>
                    <input type="radio" name="eventLocationType" class="eventLocationType" id ="eventLocationTypeMediadir" value="2" [[CALENDAR_EVENT_LOCATION_TYPE_MEDIADIR]] /> <label for="eventLocationTypeMediadir">[[TXT_CALENDAR_PLACE_DATA_FROM_MEDIADIR]]</label>
            </div>
            <!-- END eventPlaceTypeRadio -->
            <!-- BEGIN eventPlaceInput -->
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_PLACE]]</label>
                <input name="place" type="text" value="[[CALENDAR_EVENT_PLACE]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_STREET]]</label>
                <input name="street" type="text" value="[[CALENDAR_EVENT_STREET]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_ZIP]]</label>
                <input name="zip" type="text" value="[[CALENDAR_EVENT_ZIP]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_CITY]]</label>
                <input name="city" type="text" value="[[CALENDAR_EVENT_CITY]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_COUNTRY]]</label>
                <input name="country" type="text" value="[[CALENDAR_EVENT_COUNTRY]]" />
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="placeLink" type="text" value="[[CALENDAR_EVENT_PLACE_LINK]]" />                 
            </div>
            <div class="row event_place_manual">
                <label>[[TXT_CALENDAR_EVENT_MAP]]</label>
                <div class="formUploadedFiles">
                    <div id="mapUpload_uploadWidget"></div>
                    <input type="file" name="mapUpload" id="mapUpload" />
                    <input type="hidden" name="placeMap" value="[[CALENDAR_EVENT_PLACE_MAP]]" />
                </div>
            </div>
            <!-- END eventPlaceInput -->
            <!-- BEGIN eventPlaceSelect -->
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_PLACE]]</label>
                <select name="placeMediadir">[[CALENDAR_EVENT_PLACE_OPTIONS]]</select>
            </div>
            <!-- END eventPlaceSelect -->
        </fieldset>
        <br/>
        <fieldset id="host">
            <legend>[[TXT_CALENDAR_EVENT_HOST]]</legend>
            <!-- BEGIN eventHostTypeRadio -->
            <div class="row">
                    <input type="radio" name="eventHostType" class="eventHostType" id ="eventHostTypeManual" value="1" [[CALENDAR_EVENT_HOST_TYPE_MANUAL]] /> <label for="eventHostTypeManual">[[TXT_CALENDAR_PLACE_DATA_DEFAULT]]</label>
                    <input type="radio" name="eventHostType" class="eventHostType" id ="eventHostTypeMediadir" value="2" [[CALENDAR_EVENT_HOST_TYPE_MEDIADIR]] /> <label for="eventHostTypeMediadir">[[TXT_CALENDAR_PLACE_DATA_FROM_MEDIADIR]]</label>
            </div>
            <!-- END eventHostTypeRadio -->
            <!-- BEGIN eventHostSelect -->
            <div class="row event_host_mediadir">
                <!--<label>[[TXT_CALENDAR_EVENT_PLACE]]</label>-->
                <label>[[TXT_CALENDAR_EVENT_HOST]]</label>
                <select name="hostMediadir">[[CALENDAR_EVENT_PLACE_OPTIONS]]</select>
            </div>
            <!-- END eventHostSelect -->
            <!-- BEGIN eventHostInput -->
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_NAME]]</label>
                <input name="organizerName" type="text" value="[[CALENDAR_EVENT_HOST]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_STREET]]</label>
                <input name="organizerStreet" type="text" value="[[CALENDAR_EVENT_HOST_ADDRESS]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_ZIP]]</label>
                <input name="organizerZip" type="text" value="[[CALENDAR_EVENT_HOST_ZIP]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_CITY]]</label>
                <input name="organizerCity" type="text" value="[[CALENDAR_EVENT_HOST_CITY]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_COUNTRY]]</label>
                <input name="organizerCountry" type="text" value="[[CALENDAR_EVENT_HOST_COUNTRY]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="organizerLink" type="text" value="[[CALENDAR_EVENT_HOST_LINK]]" />
            </div>
            <div class="row event_host_manual">
                <label>[[TXT_CALENDAR_EVENT_EMAIL]]</label>
                <input name="organizerEmail" type="text" value="[[CALENDAR_EVENT_HOST_EMAIL]]" />                 
            </div>
            <!-- END eventHostInput -->
        </fieldset>
        <br/>
        <fieldset id="additionalinfos">
            <legend>[[TXT_CALENDAR_EVENT_DETAILS]]</legend>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_LINK]]</label>
                <input name="link" type="text" value="[[CALENDAR_EVENT_LINK]]" />
            </div>
            <div>
                <label>[[TXT_CALENDAR_EVENT_PICTURE]]</label>
                <div class="formUploadedFiles">
                    <div id="pictureUpload_uploadWidget"></div>
                    <input type="file" name="pictureUpload" id="pictureUpload" />
                    <input type="hidden" name="picture" value="[[CALENDAR_EVENT_PICTURE]]" />
                </div>
            </div>
            <div class="row">
                <label>[[TXT_CALENDAR_EVENT_CATEGORY]] <font color="#ff0000">*</font></label>
                <select id="category" name="category" class="validate[required]">
                    [[CALENDAR_EVENT_CATEGORIES]]
                </select>
            </div>            
        </fieldset>
        <br />
        <div class="row"><input type="submit" value="[[TXT_CALENDAR_SAVE]]" name="submitFormModifyEvent" /></div>
        <div style="display: none; color: rgb(255, 0, 0);" id="calendarErrorMessage"><div class="row">[[TXT_CALENDAR_PLEASE_CHECK_INPUT]]</div></div>
    </form>
    <!-- END calendarEventModifyForm -->
</div>

Veranstaltungsinformationen

Hatte bisher den Bereich "event".

Anwendung Bereich
calendar detail

<!-- START calendar_show_note.html -->
<div id="calendar">
<div class="note">
<div class="logo">[[CALENDAR_EVENT_THUMBNAIL]]</div>

<div class="description">[[CALENDAR_EVENT_DESCRIPTION]]</div>

<div class="details">
<table cellspacing="0">
	<tbody>
		<tr>
			<th colspan="2">Veranstaltungs Informationen</th>
		</tr>
		<tr class="row1">
			<td align="left" valign="top" width="25%"><b>[[TXT_CALENDAR_DATE]]</b></td>
			<td valign="top" width="75%"><!-- BEGIN calendarDateDetail -->[[CALENDAR_DATE_DETAIL]][[CALENDAR_SEP_DATE_TIME_DETAIL]][[CALENDAR_TIME_DETAIL]][[TXT_CALENDAR_CLOCK_DETAIL]] <!-- END calendarDateDetail --></td>
		</tr>
		<tr class="row2">
			<td align="left" valign="top" width="25%"><b>[[TXT_CALENDAR_CATEGORY]]</b></td>
			<td valign="top" width="75%">[[CALENDAR_EVENT_CATEGORY]] </td>
		</tr>
		<tr class="row1">
			<td align="left" valign="top" width="25%"><b>[[TXT_CALENDAR_ATTACHMENT]]</b></td>
			<td valign="top" width="75%">[[CALENDAR_EVENT_ATTACHMENT]] </td>
		</tr>
		<tr class="row2">
			<td align="left" valign="top" width="25%"><b>[[TXT_CALENDAR_EXPORT]]</b></td>
			<td valign="top" width="75%">[[CALENDAR_EVENT_EXPORT_ICON]] </td>
		</tr>
	</tbody>
</table>
</div>
</div>


<!-- BEGIN calendarEventRegistration -->
<div class="registration">[[CALENDAR_EVENT_REGISTRATION_LINK]]</div>
<!-- END calendarEventRegistration -->

<!-- BEGIN calendarEventAddress -->
<div class="adress">
<h2>[[TXT_CALENDAR_PLACE]]</h2>

<address>[[CALENDAR_EVENT_PLACE]]<br />
[[CALENDAR_EVENT_LOCATION_ADDRESS]]<br />
[[CALENDAR_EVENT_LOCATION_ZIP]] [[CALENDAR_EVENT_LOCATION_CITY]]<br />
[[CALENDAR_EVENT_LOCATION_COUNTRY]]<br />
<br />
[[CALENDAR_EVENT_LOCATION_MAP_LINK]]</address>
</div>
<!-- END calendarEventAddress --><!-- BEGIN calendarEventHost -->

<div class="adress">
<h2>[[TXT_CALENDAR_EVENT_HOST]]</h2>

<address>[[CALENDAR_EVENT_HOST]]<br />
[[CALENDAR_EVENT_HOST_ADDRESS]]<br />
[[CALENDAR_EVENT_HOST_ZIP]] [[CALENDAR_EVENT_HOST_CITY]]</address>
</div>
<!-- END calendarEventHost --></div>

<div class="back"><a href="javascript:history.back()">[[TXT_CALENDAR_BACK]]</a></div>
<!-- END calendar_show_note.html -->

An-/Abmelden

Hatte bisher den Bereich "sign".

Anwendung Bereich
calendar register

[[CALENDAR_JAVASCRIPT]]

<div id="calendar">
    <!-- BEGIN calendarRegistrationForm -->
    <form name="registrationForm" id="registrationForm" method="post" action="index.php?section=[[CALENDAR_MODULE_NAME]]&cmd=register">
        <fieldset>
            <legend>An- \ Abmeldeformular</legend>        
            <input type="hidden" name="id" value="[[CALENDAR_EVENT_ID]]" />
            <input type="hidden" name="form" value="[[CALENDAR_FORM_ID]]" />
            <input type="hidden" name="date" value="[[CALENDAR_EVENT_DATE]]" />
            <input type="hidden" name="userid" value="[[CALENDAR_USER_ID]]" />
            <!-- BEGIN calendarRegistrationField -->
            [[CALENDAR_REGISTRATION_FIELD]]
            <!-- END calendarRegistrationField -->            
            <!-- BEGIN calendarRegistrationCaptcha -->
            <p>
                <label>[[TXT_CALENDAR_CAPTCHA]]</label>
                [[CALENDAR_CAPTCHA_CODE]]
            </p>
            <!-- END calendarRegistrationCaptcha -->
            <p><input type="submit" name="submitRegistration" value="[[TXT_CALENDAR_REGISTRATION_SUBMIT]]" /><br />[[TXT_CALENDAR_ERROR]]</p>    
        </fieldset>
    </form>
    <!-- END calendarRegistrationForm -->

    <!-- BEGIN calendarRegistrationStatus -->
    [[CALENDAR_REGISTRATION_STATUS]]<br />
    <br />
    [[CALENDAR_LINK_BACK]]
    <!-- END calendarRegistrationStatus -->
</div>

Status

Ist eine neue Seite.

Anwendung Bereich
calendar Status

<!-- BEGIN successMessage -->
Ihre Reservation war erfolgreich. Danke!
<!-- END successMessage -->
<!-- BEGIN cancelMessage -->
Ihre Reservation wurde wieder gelöscht.
<!-- END cancelMessage -->

kategorie:Version 3.2.0