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.
User avatar

Midge
Sponsor
Posts: 75
Joined: 22. February 2009 21:47
phpBB.com User: Midge
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Midge »

Does no one have any idea where the portal update and the calendar mod clash?
Gerne auch auf deutsch. :)

Momentan sieht der Kalender auf dem Portal so aus:

Image

jerkstore
Active Member
Posts: 26
Joined: 10. October 2008 06:45

Re: Calendar block for phpBB Calendar 0.0.8

Post by jerkstore »

Yeah it doesn't work with 1.0.4 for me either.

Dr Nick^
Valued Contributor
Posts: 81
Joined: 11. August 2009 13:56
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Dr Nick^ »

OLD:

OPEN
language/en/common.php

FIND

Code: Select all

?>
BEFORE ADD

Code: Select all

//Missing lang variables
$lang['MONTH'] = 'Month';
$lang['WEEK'] = 'Week';
$lang['DAY'] = 'Day';

    // Event Calendar
    $lang = array_merge($lang, array(
       'CALENDAR'      => 'Calendar',
       // minical short day names   
       'mini_datetime'   => array(
            'Su'      => 'Su',
            'Mo'      => 'Mo',
            'Tu'      => 'Tu',
            'We'      => 'We',
            'Th'      => 'Th',
            'Fr'      => 'Fr',
            'Sa'      => 'Sa',
       ),
    ));
  

try:

OPEN
\language\en\mods\additional_blocks.php

FIND

Code: Select all

$lang = array_merge($lang, array(
// Additional blocks
)); 
BEFORE Add:

Code: Select all

$lang['MONTH'] = 'Month';
$lang['WEEK'] = 'Week';
$lang['DAY'] = 'Day'; 
AFTER //Additional blocks Add:

Code: Select all

       'CALENDAR'      => 'Calendar',
       // minical short day names   
       'mini_datetime'   => array(
            'Su'      => 'Su',
            'Mo'      => 'Mo',
            'Tu'      => 'Tu',
            'We'      => 'We',
            'Th'      => 'Th',
            'Fr'      => 'Fr',
            'Sa'      => 'Sa', 

its my suggestion, since thats where the 'new' language is in.
its worth giving it a try.

note: I dont use this mod, so i did not have test this method!
[Rel] (WoW) Application form + ACP sup. (v3.1) => http://board3.de/viewtopic.php?f=21&t=2663
[Rel] Ventrilo Block + ACP sup.(v1.1) => http://board3.de/viewtopic.php?f=21&t=2665
User avatar

wintstar
Active Member
Posts: 45
Joined: 24. March 2009 14:35
phpBB.de User: wintstar
phpBB.com User: wintstar
Location: Langgöns/Hessen
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by wintstar »

Update auf 1.0.4

Das die anstehenden Events im Portal sichtbar sind müßt ihr folgendes einfügen

in der portal.php änderungen vornehmen wie hier beschrieben http://board3.de/viewtopic.php?f=21&t=4 ... 150#p15604

erstellt dann eine block html

Code: Select all

<!-- IF .events -->
		<div class="forabg">
			<div class="inner"><span class="corners-top"><span></span></span>
			<ul class="topiclist">
				<li class="header">
					<dl class="icon">
						<dt>{L_UPCOMING_EVENTS}</dt>
						<dd style="width:16%">{L_INVITE_INFO}</dd>
						<dd style="width:16%">{L_EVENT_CREATED_BY}</dd>
					</dl>
				</li>
			</ul>
			<ul class="topiclist forums">
			<!-- BEGIN events -->
				<li class="row">
					<dl class="icon"<!-- IF events.IMAGE --> style="background-image: url({events.IMAGE}); background-repeat: no-repeat;"<!-- ENDIF -->>
						<dt><a href="{events.EVENT_URL}" title="<!-- IF events.ETYPE_DISPLAY_NAME -->{events.ETYPE_DISPLAY_NAME}: <!-- ENDIF -->{events.FULL_SUBJECT}">
							<span style="<!-- IF events.COLOR -->color:#{events.COLOR};<!-- ENDIF --> font-weight: bold;">
								<!-- IF events.ETYPE_DISPLAY_NAME -->{events.ETYPE_DISPLAY_NAME}: <!-- ENDIF -->{events.SUBJECT}</span><br /><!-- IF events.ALL_DAY -->{L_ALL_DAY} {events.START_TIME}<!-- ELSE -->{events.START_TIME} {L_TO_TIME} {events.END_TIME}<!-- ENDIF --></a>
						</dt>
						<dd style="width:16%; padding-left:5px;" class="lastpost">{events.INVITED}</dd>
						<dd style="width:16%; padding-left:5px;" class="lastpost">{events.POSTER}</dd>
					</dl>
				</li>
			<!-- END events -->
			</ul>
			<span class="corners-bottom"><span></span></span></div>
		</div>
	<!-- ENDIF -->
benennt die event.html und fügt die in root/styles/prosilver/template/portal/block ein

öffnet root/styles/prosilver/template/portal/block additional_blocks_center.html

und sucht

Code: Select all

<!-- additional_blocks //-->
und fügt dannach

Code: Select all

<!-- INCLUDE portal/block/event.html --> 
ein. cache leeren und style aktualisieren

gruß
wintstar
Gruß Stephan :-)

Zitat: "Damit das Mögliche entsteht, muss immer wieder das Unmögliche versucht werden" (Hermann Hesse (1877-1962)).
Ein Blick ins zukünftige phpBB 3.1.1 - Forum, die lfd. Builds
phpBB 3.0.13 html 5 und responsive
User avatar

Mike
Former Team Member
Posts: 1862
Joined: 3. July 2008 23:59
Location: Schwarzwald / FDS
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Mike »

Der Block ist nicht 1.0.4 Kompatibel... Er wird zwar funktionieren, passt sich dann aber nicht automatisch ans Style an, wenn man es in der config ändert. Die Abschaltung der Icons unterstützt er auch nicht.
Schau dir bitte mal einen der Blöcke aus 1.0.4 an ;)
kein Support per PN / Messenger
no Support via PM / Messenger
User avatar

wintstar
Active Member
Posts: 45
Joined: 24. March 2009 14:35
phpBB.de User: wintstar
phpBB.com User: wintstar
Location: Langgöns/Hessen
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by wintstar »

Mike wrote:Der Block ist nicht 1.0.4 Kompatibel... Er wird zwar funktionieren, passt sich dann aber nicht automatisch ans Style an, wenn man es in der config ändert. Die Abschaltung der Icons unterstützt er auch nicht.
Schau dir bitte mal einen der Blöcke aus 1.0.4 an ;)
schau in meinem forum der style und eventanzeige ist ok, so bald die wochenanzeige geschaltet ist wird die anzeige im portal deaktiviert. es geht mir nur um die anzeige der anstehenden events.

http://www.china-quads.com
gruß
stephan
Gruß Stephan :-)

Zitat: "Damit das Mögliche entsteht, muss immer wieder das Unmögliche versucht werden" (Hermann Hesse (1877-1962)).
Ein Blick ins zukünftige phpBB 3.1.1 - Forum, die lfd. Builds
phpBB 3.0.13 html 5 und responsive
User avatar

Mike
Former Team Member
Posts: 1862
Joined: 3. July 2008 23:59
Location: Schwarzwald / FDS
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Mike »

Das ist prinzipiell schon richtig, aber wenn du schreibst das das ein Update auf 1.0.4 ist, dann muss ich aber sagen das das mit anderen Styles als prosilver leider nicht funktionieren wird, weil dein Block die Header und Footer des jeweiligen Styles nicht nutzt.
Schau mal hier
kein Support per PN / Messenger
no Support via PM / Messenger
User avatar

wintstar
Active Member
Posts: 45
Joined: 24. March 2009 14:35
phpBB.de User: wintstar
phpBB.com User: wintstar
Location: Langgöns/Hessen
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by wintstar »

danke für den tip :D
jetzt kann ich die blöcke anpassen.
mit update meint ich meinen eventblock.

gruß
stephan :)
Gruß Stephan :-)

Zitat: "Damit das Mögliche entsteht, muss immer wieder das Unmögliche versucht werden" (Hermann Hesse (1877-1962)).
Ein Blick ins zukünftige phpBB 3.1.1 - Forum, die lfd. Builds
phpBB 3.0.13 html 5 und responsive
User avatar

Midge
Sponsor
Posts: 75
Joined: 22. February 2009 21:47
phpBB.com User: Midge
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Midge »

Okay, also der Block funzt gar nicht mit dem Portalupdate. :| Schade...
Danke trotzdem für die Vorschläge, Nick und Stephan! Und natürlich für die Info, Mike! ;)

Ich werd nächstes Wochenende mal versuchen, den Eventkalendar nach Stephans Vorgabe für die rechte Spalte anzupassen - auch wenn dann leider der Zahlenkalender immer noch nicht da ist, hätten wir wenigstens noch die Eventanzeige.

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

Re: Calendar block for phpBB Calendar 0.0.8

Post by Onetimer »

Irgend jemand die wisst wo ich den Code für diese Ecken finden können?

Image
User avatar

Mike
Former Team Member
Posts: 1862
Joined: 3. July 2008 23:59
Location: Schwarzwald / FDS
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Mike »

hast du den code von oben genommen?
Welche Portalversion hast du?
kein Support per PN / Messenger
no Support via PM / Messenger

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

Re: Calendar block for phpBB Calendar 0.0.8

Post by Onetimer »

Mike wrote:hast du den code von oben genommen?
Welche Portalversion hast du?
Ich hab noch nicht den 1.0.4 update gemacht, bin noch an 1.0.3.

Ich hab dieses mod/block installiert von ersten Tag, aber mit allen code-veränderungen und updates etwas muss falsch gegangen. Ich hab aber gerade den dieses insbesondere Fehler gefunden;

Find in {theme path}/template/portal/block/calendar.html;

Code: Select all

		<span class="corners-top"><span></span></span>
Replace;

Code: Select all

		<span class="portal-corners-top"><span></span></span>
:D
User avatar

Alexandrej
Active Member
Posts: 6
Joined: 11. June 2009 20:52

Re: Calendar block for phpBB Calendar 0.0.8

Post by Alexandrej »

Midge wrote:Does no one have any idea where the portal update and the calendar mod clash?
Gerne auch auf deutsch. :)

Momentan sieht der Kalender auf dem Portal so aus:

Image
Halo Midge, Wie gehts ?

I might have the solution as I had the same problem as you did when I upgraded from 1.03 to 1.04 with Calendar 0.0.8.
This is what I did to fix it :

open \portal.php.
find

Code: Select all

$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
add on a blank line after:

Code: Select all

//-- mod : Alightner's Calendar ----------------------------------------------------
//-- add
include($phpbb_root_path . 'includes/functions_calendar.'.$phpEx);
//-- fin mod : Alightner's Calendar ------------------------------------------------
Then find

Code: Select all

if ($portal_config['portal_change_style'])
{
	include($phpbb_root_path . 'portal/block/change_style.' . $phpEx);
}
Then add on a blank line after:

Code: Select all

include($phpbb_root_path . 'portal/block/calendar.'.$phpEx);
Go back to your portal and hit refresh and you should see the calendar re-appear
If it does not work, try to refresh your styles, cache, etc.

It did work for me, so hopefully you have the same issue as your issue looks exactly like mine. Le me know if this works. ;)
Tchuss.
User avatar

Midge
Sponsor
Posts: 75
Joined: 22. February 2009 21:47
phpBB.com User: Midge
Contact:

Re: Calendar block for phpBB Calendar 0.0.8

Post by Midge »

You're the MAN, Alexandrej, YOU DID IT! :D
It's working again!
THANK YOU!! *dances around like a loon*

Vielen herzlichen Dank! ;)
User avatar

Alexandrej
Active Member
Posts: 6
Joined: 11. June 2009 20:52

Re: Calendar block for phpBB Calendar 0.0.8

Post by Alexandrej »

Glad to see it worked for you too. :)
Locked

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