Page 5 of 8

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 30. May 2010 11:06
by Hinderdaeler
Hallo,

hab den Mod eingebaut, Kommt allerdings nur folgendes.

Image

Was fehlt da noch?

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 15. June 2010 11:06
by jotne
I would like to add a group to the group list in the calendar, but do not find where to do in in ACP.
I have search everywhere, but can not find it. I do now have option to select "Administrator" and "Registered users".
I have added a new group in ACP and allowed it to post in Calendar, but do not see where to add it so it come as an option to make a Calendar entry to view for that group only.

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 16. June 2010 11:20
by jotne
Found ther error my self. I did forget to add my self into the needed group. I may have thought as an admin that I did not need to do that.

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 23. June 2010 19:01
by toxidlotus
I have a question. I use the calendar on our guild site for raids. When I add events they show as different times depending on what the user has their timezone set to. Is there anyway to make it show as the same time for everyone?

for example. I added new raids that are supposed to be from 11pm to 2am. For some people it shows as 2am -5am. I need it to show as 11am to 2am for everyone.

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 22. July 2010 23:37
by t90
This is a peace of mine "mini calendar". Works great with phpBB3 v.3.07PL1, board3Portal 1.05 and phpBB Calendar v. 0.1.0

A demo at: http://busomania.pl/

Code: Select all

{$LR_BLOCK_H_L}<img src="{T_THEME_PATH}/images/portal/portal_minical.png" width="16px" height="16px" alt=""/>&nbsp;{L_CALENDAR}{$LR_BLOCK_H_R}
    <table width="100%" cellspacing="1">
      <tr>
         <td align="left" colspan="2">{U_PREV_MONTH}</td>
         <td colspan="3" align="center"><span class="genmed">{L_MINI_CAL_MONTH}</span></td>
         <td align="right" colspan="2">{U_NEXT_MONTH}</td>
      </tr>
      <tr>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#0000FF">{L_MINI_CAL_SUN}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#0000FF">{L_MINI_CAL_MON}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#0000FF">{L_MINI_CAL_TUE}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#0000FF">{L_MINI_CAL_WED}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#0000FF">{L_MINI_CAL_THU}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#FF0000">{L_MINI_CAL_FRI}</span></td>
         <td style="width: 14%;" align="center"><span class="gensmall" style="color:#FF0000">{L_MINI_CAL_SAT}</span></td>
      </tr>
      <!-- BEGIN mini_cal_row -->
      <tr>
         <!-- BEGIN mini_cal_days -->
            <td class="row1" align="center"><span class="gensmall">{mini_cal_row.mini_cal_days.MINI_CAL_DAY}</span></td>
         <!-- END mini_cal_days -->
      </tr>

      <!-- END mini_cal_row -->
   </table>


<br />
        <h3>{L_UPCOMING_EVENTS}</h3>
            <!-- BEGIN events -->
                <a href="{events.EVENT_URL}" title="<!-- IF events.ETYPE_DISPLAY_NAME --> {events.ETYPE_DISPLAY_NAME}: <!-- ENDIF -->{events.FULL_SUBJECT}"><span style="display: block; margin: 0; padding: 0; text-align: center; font-weight: bold;"><!-- IF events.ETYPE_DISPLAY_NAME --> {events.ETYPE_DISPLAY_NAME}<br /><!-- ENDIF --> {events.SUBJECT}</span></a>
                
                <!-- IF events.ALL_DAY -->{events.START_TIME}<!-- ELSE --><br />{L_FROM_TIME}: {events.START_TIME}<br />{L_TO_TIME}: {events.END_TIME}<!-- ENDIF -->
                <hr class="dashed" />
            <!-- END events -->

{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
 

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 27. July 2010 01:21
by Vor
Thanks for the mod! Is there nothing that syncs the mini-cal with phpBB Calendar though? That's what I'd really love.

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 3. August 2010 13:45
by crazybaerchen
Funktioniert der Block auch bei 1.0.5 ?

gruß

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 3. August 2010 19:58
by archivar
Hier die Antwort, der zweite Beitrag über deinem: :)
t90 wrote:This is a peace of mine "mini calendar". Works great with phpBB3 v.3.07PL1, board3Portal 1.05 and phpBB Calendar v. 0.1.0

A demo at: http://busomania.pl/

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 4. August 2010 23:51
by crazybaerchen
sorry englisch is nich so meine welt :S
aber danke ^^

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 26. August 2010 23:37
by MT0672
Tach,

kann mir jemand sagen wo ich das Datums/Zeitformat umstellen kann ????

Ich hab mich schon doof gesucht in der functions_calendar.php

Mein Calendar Block zeigt folgendes Format:

Image

Ich hätte aber gerne ein Deutsches Format : Also so: 11 Nov , 2010 von bis

Dieses blöde AM hätte ich gerne weg.

Grüße


------------------------------------------------------------------------------------------------

How can i change the Dateformat in this MOD to German ? Like this: 27 Aug , 2010 11:00

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 27. August 2010 20:38
by hegse
Nabend,

schau doch mal in den Kalender Einstellungen nach was da für eine Zeiteinstellung eingestellt ist...
M d, Y H:i

Habe ich bei mir drin.

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 27. August 2010 22:12
by MT0672
Na Super ;-)

Vielen Dank. Das wars. Hab das total übersehen das man das da einstellen kann.

Da kann ich ja lange in der functions_calendar rumsuchen lol

Manchmal ist man echt blind ;-)

Thx und schönen abend....

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 27. August 2010 22:15
by hegse
Für sowas gibt es halt solche Foren :roll: :D

Ebenso noch einen schönen Abend...

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 28. August 2010 16:20
by wang5555
Sorry, I do not understand German. :oops:

Re: phpBB Calendar block on Board3 Portal (Update 1.0.4)

Posted: 29. August 2010 17:57
by Span
So is the mini calendar just a calendar? No events?