Calender0.0.4 ins phpbb3portal
Verfasst: 16.02.2008 13:42
Hallo
Es geht um diesen Kalender :
http://www.phpbb.com/community/viewtopi ... 0&t=666195
Den möchte ich gerne ins Portal stellen . Dazu habe ich eine Anfrage an den Author gestellt , Die Antwort :
Yes you can add it to portal, but you'll have to do that yourself - I don't provide support for portal.
You should look at the required changes to index_body.html and index.php to see what you'll need
to do for the portal page.
Das sind die Installanweisungen aus der index.php :
Es geht um diesen Kalender :
http://www.phpbb.com/community/viewtopi ... 0&t=666195
Den möchte ich gerne ins Portal stellen . Dazu habe ich eine Anfrage an den Author gestellt , Die Antwort :
Yes you can add it to portal, but you'll have to do that yourself - I don't provide support for portal.
You should look at the required changes to index_body.html and index.php to see what you'll need
to do for the portal page.
Das sind die Installanweisungen aus der index.php :
Code: Alles auswählen
Open: index.php
Comments
Displays current week or next events on index
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All
include($phpbb_root_path . 'includes/functions_calendar.' . $phpEx);
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
// Assign index specific vars
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All
// Generate calendar week view or next events if required ...
calendar_display_calendar_on_index();