Warning, file /webapps/ocs-webserver/application/modules/backend/views/scripts/mail/edit.phtml was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 <?php 
0002 /**
0003  *  ocs-webserver
0004  *
0005  *  Copyright 2016 by pling GmbH.
0006  *
0007  *    This file is part of ocs-webserver.
0008  *
0009  *    This program is free software: you can redistribute it and/or modify
0010  *    it under the terms of the GNU Affero General Public License as
0011  *    published by the Free Software Foundation, either version 3 of the
0012  *    License, or (at your option) any later version.
0013  *
0014  *    This program is distributed in the hope that it will be useful,
0015  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
0016  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0017  *    GNU Affero General Public License for more details.
0018  *
0019  *    You should have received a copy of the GNU Affero General Public License
0020  *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
0021  **/
0022 ?>
0023 <h3>eMail-Template bearbeiten</h3>
0024 <?php if ($this->form): ?>
0025     <?= $this->form; ?>
0026     <br/>
0027     <a href='/backend/mail' class="ui-state-default ui-corner-all button_normal" id="4">Abbrechen</a><br/><br/>
0028 <?php else: ?>
0029     <?= $this->saveText; ?>
0030 <?php endif; ?>
0031 <script type="text/javascript">
0032     $(document).ready(function () {
0033         $.datepicker.regional['de'] = {
0034             clearText: 'löschen', clearStatus: 'aktuelles Datum löschen',
0035             closeText: 'schließen', closeStatus: 'ohne Änderungen schließen',
0036             prevText: '&#x3c;zurück', prevStatus: 'letzten Monat zeigen',
0037             nextText: 'Vor&#x3e;', nextStatus: 'nächsten Monat zeigen',
0038             currentText: 'heute', currentStatus: '',
0039             monthNames: ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni',
0040                 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],
0041             monthNamesShort: ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun',
0042                 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
0043             monthStatus: 'anderen Monat anzeigen', yearStatus: 'anderes Jahr anzeigen',
0044             weekHeader: 'Wo', weekStatus: 'Woche des Monats',
0045             dayNames: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
0046             dayNamesShort: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
0047             dayNamesMin: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
0048             dayStatus: 'Setze DD als ersten Wochentag', dateStatus: 'Wähle D, M d',
0049             dateFormat: 'dd.mm.yy', firstDay: 1,
0050             initStatus: 'Wähle ein Datum', isRTL: false
0051         };
0052         $.datepicker.setDefaults($.datepicker.regional['de']);
0053 
0054         $("#start_date").datepicker({
0055             dateFormat: 'dd.mm.yy',
0056             showButtonPanel: true,
0057             numberOfMonths: 2
0058         });
0059 
0060     });
0061 </script>