
Thank you for any help on this.
maik1two
Thanks for the heads up.Miri4ever wrote:Looks like new Version is released V0.51 but nothing mentioned here or something about the changes made.
I think so. Good idea.maik1two wrote:Is it possible to be able to have the results of the PARTICIPANTS LIST visible in the calendar? I would like to have the member numbers of "yes" showing up but hide all others.
Thank you for any help on this.
maik1two
Even though this post has been quite a while ago: I am working on a combination of the two so event dates can first be planned using the hookup and then, once a date was found, be automatically entered into HJWs calendar.Holger wrote:Is it done by the HookUp mod from phpBB.de?
overall_header_content_before.html
This is now done in a first version:gn#36 wrote:Even though this post has been quite a while ago: I am working on a combination of the two so event dates can first be planned using the hookup and then, once a date was found, be automatically entered into HJWs calendar.Holger wrote:Is it done by the HookUp mod from phpBB.de?
gn#36 wrote:A bridge is now available, linking hjws calendar extension with the hookup. When an active date is set on hookup, this date is automatically entered into the calendar. When it is reset, the appointment is again removed from the calendar.
Download of current development version for testing: https://github.com/gn36/phpbb-ext-hjw-b ... master.zip
Github: https://github.com/gn36/phpbb-ext-hjw-bridge
Issues: https://github.com/gn36/phpbb-ext-hjw-bridge/issues
I don't expect any further changes to this ext.
Code: Select all
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN || S_IS_BOT and S_CALENDAR_FOR_GUESTS || !S_USER_LOGGED_IN and S_CALENDAR_FOR_GUESTS -->
<!-- IF S_WEEK_ON_INDEX == 1 -->
<!-- IF !S_CALENDAR -->
<div id="header_bevor">
<!-- INCLUDE event/week.html -->
</div>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- ENDIF -->
Code: Select all
<!-- IF CALENDAR_ALLOWED -->
<fieldset class="fields2 bg2" style="font-size:0.95em;padding-left:0px;border-radius:7px;">
<legend><b>{L_CALENDAR}</b></legend>
<dl>
<dt>
{L_CALENDAR_EVENT_NAME}
</dt>
<dd>
<input name="event_name" class="inputbox autowidth" type="text" size="23" value="{EVENT_NAME}">
</dd>
</dl>
<dl>
<dt>
{L_CALENDAR_EVENT}
</dt>
<dd>
<select name="event">
<!-- BEGIN eventselect -->
{eventselect.SELECT}
<!-- END eventselect -->
</select>
</dd>
</dl>
<dl>
<dt>
{L_CALENDAR_FROM}
</dt>
<dd>
<select name="from_day">
<!-- BEGIN from_day -->
{from_day.SELECT}
<!-- END from_day -->
</select>
<select name="from_month">
<!-- BEGIN from_month -->
{from_month.SELECT}
<!-- END from_month -->
</select>
<select name="from_year">
<!-- BEGIN from_year -->
{from_year.SELECT}
<!-- END from_year -->
</select>
</dd>
</dl>
<dl>
<dt>
{L_CALENDAR_TO}
</dt>
<dd>
<select name="to_day">
<!-- BEGIN to_day -->
{to_day.SELECT}
<!-- END to_day -->
</select>
<select name="to_month">
<!-- BEGIN to_month -->
{to_month.SELECT}
<!-- END to_month -->
</select>
<select name="to_year">
<!-- BEGIN to_year -->
{to_year.SELECT}
<!-- END to_year -->
</select>
</dd>
</dl>
</fieldset>
<!-- ENDIF -->
overall_header_content_before
class="inputbox autowidth"
bei mir dazu das der Hinergrund dem Theme angepasst wird und nicht weiß erscheint. Dazu mußte ich einiges Fummeln um die Anzeigen alle in die gleiche Spalte zu bekommen weil bei mir standen die Daten immer weiter vorne als die anderen Eingabe Felder von anderen Extensionen. Bekam das nur durch ändern der Font size hin, weil alles andere die Infos zu weit nach vorne geschoben hatten.overall_header_content_before
mit folgendem Inhalt haben:Code: Select all
<!-- IF not S_IS_BOT -->
<div class="navbar calendar">
<div class="inner"><span class="corners-top"><span></span></span>
<span id="time">
<!-- INCLUDE event/week.html -->
</span>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
overall_header_navbar_before
hat in zwar fast richtig sprengt aber irgendwie das Style Layout bei mir auseinander.