Hallo,
vielen Dank für die Antwort. Ich konnte mich erst jetzt weiter damit beschäftigen. Im Prinzip ist das genau das was ich benötige.
Leider funktionieren bei mir die Tags {CALENDAR_PREVNEXT} {CALENDAR_PERIOD} nicht. Sie werden einfach nur als Text auf der Seite angezeigt.
Ich verwende zum testen phpwcms 1.9.0-rc.2 (2017/11/29, r549).
Für den Test habe ich das Beispiel von oben übernommen und als HTML-Contentpart eingefügt. Die einzigen Änderungen waren:
Code: Select all
template=calendar_inhalt.html
lang=
Ich habe unter /template/inc_script/frontend_render die Datei init_calendar.php abgelegt, die ich von hier übernommen habe:
https://wiki.phpwcms.org/doku.php/deuts ... e/kalender
Code: Select all
<?php
/*************************************************************************************
Copyright notice
(c) 2002-2008 Oliver Georgi (oliver@phpwcms.de) // All rights reserved.
This script is part of PHPWCMS. The PHPWCMS web content management system is
free software; you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html
A copy is found in the textfile GPL.txt and important notices to the license
from the author is found in LICENSE.txt distributed with these scripts.
This script is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
This copyright notice MUST APPEAR in all copies of the script!
*************************************************************************************/
// ----------------------------------------------------------------
// OBLIGATE CHECK FOR PHPWCMS CONSTANTS
if (!defined('PHPWCMS_ROOT')) {die("You Cannot Access This Script Directly, Have a Nice Day.");}
// ----------------------------------------------------------------
/**
* Usage: sample Replacement Tag
*
* {CALENDAR:
* items=100
* template=dates_list_de.html
* lang=de
* tag=tag1, tag2
* tagmode=OR
* date_start=TODAY|01.01.2009
* date_end=TODAY|31.12.2010
* href=index.php?calendar
* WxHxCxQ=150x100x0x80 (since V1.1)
* }
*
* OR
*
* {CALENDAR:2,main_page.tmpl,de en, href, tag1, tag2 tag2, tag3}
* [item count,[template[,language(en de - separated by space)[, href, tags, tag, tag, tag]]]]
*
* (Please use the first Replacement Tag method)
*
**/
if(strpos($content['all'], '{CALENDAR:')) {
$GLOBALS['block']['css']['calendar'] = 'specific/calendar.css'; // +kh: including the css file
include('include/inc_module/mod_calendar/inc/calendar.class.php');
$myCal = & new phpwcmsCalendar();
$myCal->parse($content['all']);
}
?>
Ich hatte zuerst die Datei calendar.php von
/template/inc_script/frontend_render/disabled
nach
/template/inc_script/frontend_render/
kopiert.
Damit hat aber der RT {CALENDAR} nicht funktioniert. Aus diesem Grund habe ich auf die init_calendar.php zurückgegriffen, mit der es dann funktioniert hat. Ich vermute mal, dass da das Problem liegt.
Ich würde mich über weitere Hilfe freuen! Falls weitere Informationen benötigt werden einfach melden.
Viele Grüße,
Malte