Calendar block for phpBB Calendar 0.0.8

Forum rules
This forum is not for support requests.

Only post Modifications for Board3 Portal 1.0.x in this forum.
Locked
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Kevin »

derkubi wrote:2. Can i change the date from [1.4] to [4.1.2009] or [4.Jan.2009]?
Other way round this should be the solution: viewtopic.php?p=7870#p7870
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!
User avatar

wang5555
Translator
Posts: 55
Joined: 18. December 2008 01:39
phpBB.com User: wang5555
Location: Taiwan

Re: Calendar block for phpBB Calendar 0.0.8

Post by wang5555 »

derkubi wrote:Hello

Two questions :

Image

1. Under style BF-VISTA the block is transparent .

2. Can i change the date from [1.4] to [4.1.2009] or [4.Jan.2009]?
1. Please paste style BF-VISTA download link.
2. Try it:

#
#-----[ OPEN ]-----
#
includes/functions_calendar.php

#
#-----[ FIND ]-----
#

Code: Select all

            $event_output['NUMBER'] = $dayOfEvent["mon"].".".$dayOfEvent["mday"]."";
#
#-----[ REPLACE WITH ]-----
#

Code: Select all

            $event_output['NUMBER'] = $dayOfEvent["mday"].".".$dayOfEvent["mon"].".".$dayOfEvent["year"]."";
#
#-----[ SAVE & CLOSE ]-----
#
It is more blessed to give than to reveive, welcome to letter, thanks & good-bye!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
User avatar

derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by derkubi »

ty , works fine .....

You can find BF-Vista here : http://www.phpbb.com/community/viewtopi ... b5da2c1a74 , but i am using the 3.0.0 version

Here are 2 links :

original board3portal minical-block without transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt

and the calendar0.0.8 portal block with transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt

think you need only these two files to help ....
User avatar

wang5555
Translator
Posts: 55
Joined: 18. December 2008 01:39
phpBB.com User: wang5555
Location: Taiwan

Re: Calendar block for phpBB Calendar 0.0.8

Post by wang5555 »

derkubi wrote:ty , works fine .....

You can find BF-Vista here : http://www.phpbb.com/community/viewtopi ... b5da2c1a74 , but i am using the 3.0.0 version

Here are 2 links :

original board3portal minical-block without transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt

and the calendar0.0.8 portal block with transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt

think you need only these two files to help ....
Try it--Add class="row2":

#
#-----[ OPEN ]-----
#
styles/YOUR_THEME/template/portal/block/calendar.html

#
#-----[ FIND ]-----
#

Code: Select all

<table class="tablebg" cellspacing="1" cellpadding="0" width="100%">
         <tr>
            <td align="left" colspan="2"><!-- IF CALENDAR_PREV_MINI -->{CALENDAR_PREV_MINI}</a><!-- ENDIF --></td>
            <td colspan="3" align="center"><span class="genmed">{CALENDAR_HEADER_MINI}</span></td>
            <td align="right" colspan="2"><!-- IF CALENDAR_NEXT_MINI -->{CALENDAR_NEXT_MINI}</a><!-- ENDIF --></td>
         </tr>

</table>
#
#-----[ RPLACE WITH ]-----
#

Code: Select all

<table class="tablebg" cellspacing="1" cellpadding="0" width="100%">
         <tr class="row2">
            <td align="left" colspan="2"><!-- IF CALENDAR_PREV_MINI -->{CALENDAR_PREV_MINI}</a><!-- ENDIF --></td>
            <td colspan="3" align="center"><span class="genmed">{CALENDAR_HEADER_MINI}</span></td>
            <td align="right" colspan="2"><!-- IF CALENDAR_NEXT_MINI -->{CALENDAR_NEXT_MINI}</a><!-- ENDIF --></td>
         </tr>

</table>
#
#-----[ FIND ]-----
#

Code: Select all

  </tr>
  <!-- BEGIN mini_calendar_days -->
  <!-- IF mini_calendar_days.START_WEEK -->
  <tr>
#
#-----[ RPLACE WITH ]-----
#

Code: Select all

  </tr>
  <!-- BEGIN mini_calendar_days -->
  <!-- IF mini_calendar_days.START_WEEK -->
  <tr class="row2">
#
#-----[ SAVE & CLOSE ]-----
#

P.S.
Purge the cache.
It is more blessed to give than to reveive, welcome to letter, thanks & good-bye!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
User avatar

derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by derkubi »

Ty wang , perfect ...

sloeri
Active Member
Posts: 1
Joined: 31. December 2008 12:46

Re: Calendar block for phpBB Calendar 0.0.8

Post by sloeri »

Hey Guys,

For some reason events are not shown in the calendar...
(i have the Calendar mod 0.0.8 yes... :) i have done the required options for the block... added it to the portal and it is showing correct...)
when i click on it, the calendar indeed opens... (correct month etc...)
only thing not showing is the events i added to the calendar..

where could i have gone wrong ?

edit : The link where it should say "Calendar" also shows as { MINI_CAL_CALENDAR } ...???


EDIT 2 : GOT IT WORKING ;) i made a mistake... duh :)


Regards
Joeri

Onetimer
Active Member
Posts: 48
Joined: 27. June 2008 13:29

Re: Calendar block for phpBB Calendar 0.0.8

Post by Onetimer »

If I disable the default Board3 mini calendar (which anyone who installs this mod would obviously do) the name in the block header changes from Calendar to { MINI_CAL_CALENDAR }. But if I enable the mini calendar both have the Calender name displayed. Is this a bug or have I made a mistake somewhere?

*EDIT* Solved it by the fix posted below */EDIT*
Last edited by Onetimer on 15. January 2009 04:52, edited 1 time in total.

Onetimer
Active Member
Posts: 48
Joined: 27. June 2008 13:29

Re: Calendar block for phpBB Calendar 0.0.8

Post by Onetimer »

Calendar 0.0.8 block and Mini Calander block seem to both use the same L_MINI_CAL_CALENDAR, right? The Calendar 0.0.8 block should have used the L_CALENDAR tag instead, I think?

I solved the above problem by exchanging the two instances of L_MINI_CAL_CALENDAR to L_CALENDAR in calendar.html.

Joschi
Active Member
Posts: 34
Joined: 22. September 2008 21:42
Location: Rosengarten

Re: Calendar block for phpBB Calendar 0.0.8

Post by Joschi »

hallo,

kann jemand die zum Einbinden des Blocks benötigten Daten mal zusammen fassen?
Es sind mittlerweile so viele Fragen/Probleme hier drin dass ich nicht mehr durchblicke.......

Danke

Joschi
Active Member
Posts: 34
Joined: 22. September 2008 21:42
Location: Rosengarten

Re: Calendar block for phpBB Calendar 0.0.8

Post by Joschi »

hmmm...... schade eigentlich........ :?

Grüße

steppe
Active Member
Posts: 7
Joined: 29. October 2008 14:38

Re: Calendar block for phpBB Calendar 0.0.8

Post by steppe »

Hallo!

Bei mir werden Termine im Block nicht angezeigt, wenn sie nicht im aktuellen Monat stattfinden. Sprich, jetzt ist Januar und ein Termin im Juni wird nicht angezeigt. Wenn ich mich bis Juni vorarbeite, wird dann auch der Termin angezeigt. Wie kann man das ändern?

Gruß Steppe

mk1200
Active Member
Posts: 16
Joined: 17. December 2008 16:08
phpBB.com User: mk1200

Re: Calendar block for phpBB Calendar 0.0.8

Post by mk1200 »

Nice work on this one guys.
Last edited by mk1200 on 4. February 2009 17:04, edited 2 times in total.

JeRicHoOL
Valued Contributor
Posts: 53
Joined: 8. September 2008 14:02

Re: Calendar block for phpBB Calendar 0.0.8

Post by JeRicHoOL »

I installed this block and all days look the same. Is there a ways to have the current day in another color or something like this, so people can see which day it is? (proSilver)

Thanks in advance.

amroth
Valued Contributor
Posts: 59
Joined: 18. July 2008 19:10

Re: Calendar block for phpBB Calendar 0.0.8

Post by amroth »

Ich finde die Datei

Code: Select all

includes/functions_calendar.php
absolut nicht die gibts bei mir einfach nicht -.- und nu ?
www.religions-of-azeroth.de
< Wir Suchen GM's | Scripter / Bugfixxer | Foren Moderatoren | Foren Designer >
User avatar

Christian_N
Former Team Member
Posts: 2266
Joined: 19. January 2008 01:17
phpBB.de User: Christian_N
phpBB.com User: Christian_N
Location: Frankfurt
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Christian_N »

Hast du dir auch den phpBB Calendar 0.0.8 runtergeladen? Den brauchst du nähmlich.
Denke aber mal eher nicht, ok gibs zu regulär geht es eh schlecht da phpBB.com Down ist, wenn man kein Trick 17 anwendet. :lol:
Download wäre jedenfalls http://www.phpbb.com/index.php?f=70&t=666195 gewesen.

Da aber derzeit Down ist hab ich mit Trick 17 mal die Cache-Version genommen.

Und sehe da, der Download-Link des Kalender gefunden: http://phpbbcalendar.com/downloads/phpbb_Calendar.zip :lol:

Gruß Chris
Meine Projekte: Chantals - Fanpage .::. phpBB Projekt
No support via PM, email or messenger!
Locked

Return to “board3 Portal v1.0.x - Modifications”