frio: events - adapt changes to the templates of the other themes
This commit is contained in:
parent
8b4c416713
commit
c99da380cf
|
@ -576,6 +576,7 @@ function events_content(&$a) {
|
||||||
'$t_orig' => $t_orig,
|
'$t_orig' => $t_orig,
|
||||||
'$summary' => array('summary', t('Title:'), $t_orig, '', '*'),
|
'$summary' => array('summary', t('Title:'), $t_orig, '', '*'),
|
||||||
'$sh_text' => t('Share this event'),
|
'$sh_text' => t('Share this event'),
|
||||||
|
'$share' => array('share', t('Share this event'), $sh_checked, ''),
|
||||||
'$sh_checked' => $sh_checked,
|
'$sh_checked' => $sh_checked,
|
||||||
'$nofinish' => array('nofinish', t('Finish date/time is not known or not relevant'), $n_checked),
|
'$nofinish' => array('nofinish', t('Finish date/time is not known or not relevant'), $n_checked),
|
||||||
'$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
|
'$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
|
||||||
|
|
|
@ -12,24 +12,15 @@
|
||||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||||
|
|
||||||
<div id="event-start-text">{{$s_text}}</div>
|
|
||||||
{{$s_dsel}}
|
{{$s_dsel}}
|
||||||
|
|
||||||
<div id="event-finish-text">{{$f_text}}</div>
|
|
||||||
{{$f_dsel}}
|
{{$f_dsel}}
|
||||||
|
|
||||||
<div id="event-datetime-break"></div>
|
{{include file="field_checkbox.tpl" field=$nofinish}}
|
||||||
|
|
||||||
<input type="checkbox" name="nofinish" value="1" id="event-nofinish-checkbox" {{$n_checked}} /> <div id="event-nofinish-text">{{$n_text}}</div>
|
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||||
|
|
||||||
<div id="event-nofinish-break"></div>
|
{{include file="field_input.tpl" field=$summary}}
|
||||||
|
|
||||||
<input type="checkbox" name="adjust" value="1" id="event-adjust-checkbox" {{$a_checked}} /> <div id="event-adjust-text">{{$a_text}}</div>
|
|
||||||
|
|
||||||
<div id="event-adjust-break"></div>
|
|
||||||
|
|
||||||
<div id="event-summary-text">{{$t_text}}</div>
|
|
||||||
<input type="text" id="event-summary" name="summary" value="{{$t_orig|escape:'html'}}" />
|
|
||||||
|
|
||||||
|
|
||||||
<div id="event-desc-text">{{$d_text}}</div>
|
<div id="event-desc-text">{{$d_text}}</div>
|
||||||
|
@ -41,8 +32,9 @@
|
||||||
|
|
||||||
<div id="event-location-break"></div>
|
<div id="event-location-break"></div>
|
||||||
|
|
||||||
<input type="checkbox" name="share" value="1" id="event-share-checkbox" {{$sh_checked}} /> <div id="event-share-text">{{$sh_text}}</div>
|
{{if ! $eid}}
|
||||||
<div id="event-share-break"></div>
|
{{include file="field_checkbox.tpl" field=$share}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{$acl}}
|
{{$acl}}
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,14 @@
|
||||||
$('#event-edit-preview').val(0);
|
$('#event-edit-preview').val(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// disable the input for the finish date if it is not available
|
||||||
|
function enableDisableFinishDate() {
|
||||||
|
if( $('#id_nofinish').is(':checked'))
|
||||||
|
$('#id_finish_text').prop("disabled", true);
|
||||||
|
else
|
||||||
|
$('#id_finish_text').prop("disabled", false);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#events-calendar').fullCalendar({
|
$('#events-calendar').fullCalendar({
|
||||||
|
@ -152,9 +160,9 @@
|
||||||
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
$('#event-share-checkbox').change(function() {
|
$('#id_share').change(function() {
|
||||||
|
|
||||||
if ($('#event-share-checkbox').is(':checked')) {
|
if ($('#id_share').is(':checked')) {
|
||||||
$('#acl-wrapper').show();
|
$('#acl-wrapper').show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -175,6 +183,11 @@
|
||||||
|
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
|
// disable the finish time input if the user disable it
|
||||||
|
$('body').change("#id_nofinish", function() {
|
||||||
|
enableDisableFinishDate()
|
||||||
|
}).trigger('change');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -153,7 +153,7 @@ Dialog._load = function(url) {
|
||||||
*/
|
*/
|
||||||
function loadModalTitle() {
|
function loadModalTitle() {
|
||||||
// clear the text of the title
|
// clear the text of the title
|
||||||
//$("#modal-title").empty();
|
$("#modal-title").empty();
|
||||||
|
|
||||||
// hide the first element with the class "heading" of the modal body
|
// hide the first element with the class "heading" of the modal body
|
||||||
$("#modal-body .heading").first().hide();
|
$("#modal-body .heading").first().hide();
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<div class="event-buttons pull-right">
|
<div class="event-buttons pull-right">
|
||||||
{{if $event.item.plink}}<a href="{{$event.plink.0}}" title="{{$event.plink.1}}" target="_blank" class="btn "><i class="fa fa-external-link" aria-hidden="true"></i></a>{{/if}}
|
{{if $event.item.plink}}<a href="{{$event.plink.0}}" title="{{$event.plink.1}}" target="_blank" class="btn "><i class="fa fa-external-link" aria-hidden="true"></i></a>{{/if}}
|
||||||
{{if $event.edit}}<a href="{{$event.edit.0}}" title="{{$event.edit.1}}" class="btn"><i class="fa fa-pencil" aria-hidden="true"></i></a>{{/if}}
|
{{if $event.edit}}<a onclick="eventEdit('{{$event.edit.0}}')" title="{{$event.edit.1}}" class="btn"><i class="fa fa-pencil" aria-hidden="true"></i></a>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,139 +1,162 @@
|
||||||
|
|
||||||
<h3 class="heading">{{$title}}</h3>
|
<div id="event-form-wrapper">
|
||||||
|
<h3 class="heading">{{$title}}</h3>
|
||||||
|
|
||||||
{{* The event edit navigation menu (text input, permissions, preview, filebrowser) *}}
|
{{* The event edit navigation menu (text input, permissions, preview, filebrowser) *}}
|
||||||
<ul id="event-nav" class="nav nav-tabs hidden-xs event-nav" role="menubar" data-tabs="tabs">
|
<ul id="event-nav" class="nav nav-tabs event-nav" role="menubar" data-tabs="tabs">
|
||||||
{{* Mark the first list entry as active because it is the first which is active after opening
|
{{* Mark the first list entry as active because it is the first which is active after opening
|
||||||
the modal. Changing of the activity status is done by js in event_head.tpl *}}
|
the modal. Changing of the activity status is done by js in event_head.tpl *}}
|
||||||
<li class="active" role="menuitem"><a id="event-edit-lnk" onclick="eventEditActive(); return false;">Text</a></li>
|
<li class="active" role="menuitem"><a id="event-edit-lnk" onclick="eventEditActive(); return false;">Text</a></li>
|
||||||
{{if $acl}}<li role="menuitem" {{if !$sh_checked}} style="display: none"{{/if}}><a id="event-perms-lnk" onclick="eventAclActive();return false;">Permissions</a></li>{{/if}}
|
{{if $acl}}<li role="menuitem" {{if !$sh_checked}} style="display: none"{{/if}}><a id="event-perms-lnk" onclick="eventAclActive();return false;">Permissions</a></li>{{/if}}
|
||||||
{{if $preview}}<li role="menuitem"><a id="event-preview-lnk" onclick="eventPreviewActive();return false;">{{$preview}}</a></li>{{/if}}
|
{{if $preview}}<li role="menuitem"><a id="event-preview-lnk" onclick="eventPreviewActive();return false;">{{$preview}}</a></li>{{/if}}
|
||||||
<li role="menuitem"><a id="event-preview-link" onclick="fbrowserActive(); return false;"> Browser </a></li>
|
{{* commented out because it isn't implemented yet
|
||||||
</ul>
|
<li role="menuitem"><a id="event-preview-link" onclick="fbrowserActive(); return false;"> Browser </a></li>
|
||||||
|
*}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
<form id="event-edit-form" action="{{$post}}" method="post" >
|
<div id="event-edit-form-wrapper">
|
||||||
|
<form id="event-edit-form" action="{{$post}}" method="post" >
|
||||||
|
|
||||||
<input type="hidden" name="event_id" value="{{$eid}}" />
|
<input type="hidden" name="event_id" value="{{$eid}}" />
|
||||||
<input type="hidden" name="cid" value="{{$cid}}" />
|
<input type="hidden" name="cid" value="{{$cid}}" />
|
||||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||||
|
|
||||||
<div id="event-edit-wrapper">
|
<div id="event-edit-wrapper">
|
||||||
<p>
|
<p>
|
||||||
{{$desc}}
|
{{$desc}}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{{$s_dsel}}
|
{{$s_dsel}}
|
||||||
|
|
||||||
{{$f_dsel}}
|
{{$f_dsel}}
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=$nofinish}}
|
{{include file="field_checkbox.tpl" field=$nofinish}}
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=$adjust}}
|
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||||
|
|
||||||
{{include file="field_input.tpl" field=$summary}}
|
{{include file="field_input.tpl" field=$summary}}
|
||||||
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div id="event-desc-text"><b>{{$d_text}}</b></div>
|
<div id="event-desc-text"><b>{{$d_text}}</b></div>
|
||||||
<textarea id="comment-edit-text-desc" class="form-control" name="desc" >{{$d_orig}}</textarea>
|
<textarea id="comment-edit-text-desc" class="form-control" name="desc" >{{$d_orig}}</textarea>
|
||||||
<ul id="event-desc-text-edit-bb" class="comment-edit-bb comment-icon-list nav nav-pills hidden-xs pull-left">
|
<ul id="event-desc-text-edit-bb" class="comment-edit-bb comment-icon-list nav nav-pills hidden-xs pull-left">
|
||||||
<li>
|
{{* commented out because it isn't implemented yet
|
||||||
<a class="icon" style="cursor: pointer;" title="{{$edimg|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="img" data-id="desc">
|
<li>
|
||||||
<i class="fa fa-picture-o"></i>
|
<a class="icon" style="cursor: pointer;" title="{{$edimg|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="img" data-id="desc">
|
||||||
</a>
|
<i class="fa fa-picture-o"></i>
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a class="icon bb-url" style="cursor: pointer;" title="{{$edurl|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="url" data-id="desc">
|
*}}
|
||||||
<i class="fa fa-link"></i>
|
<li>
|
||||||
</a>
|
<a class="icon bb-url" style="cursor: pointer;" title="{{$edurl|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="url" data-id="desc">
|
||||||
</li>
|
<i class="fa fa-link"></i>
|
||||||
<li>
|
</a>
|
||||||
<a class="icon bb-video" style="cursor: pointer;" title="{{$edvideo|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="video" data-id="desc">
|
</li>
|
||||||
<i class="fa fa-video-camera"></i>
|
<li>
|
||||||
</a>
|
<a class="icon bb-video" style="cursor: pointer;" title="{{$edvideo|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="video" data-id="desc">
|
||||||
</li>
|
<i class="fa fa-video-camera"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a class="icon underline" style="cursor: pointer;" title="{{$eduline|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="u" data-id="desc">
|
<a class="icon underline" style="cursor: pointer;" title="{{$eduline|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="u" data-id="desc">
|
||||||
<i class="fa fa-underline"></i>
|
<i class="fa fa-underline"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="icon italic" style="cursor: pointer;" title="{{$editalic|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="i" data-id="desc">
|
<a class="icon italic" style="cursor: pointer;" title="{{$editalic|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="i" data-id="desc">
|
||||||
<i class="fa fa-italic"></i>
|
<i class="fa fa-italic"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="icon bold" style="cursor: pointer;" title="{{$edbold|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="b" data-id="desc">
|
<a class="icon bold" style="cursor: pointer;" title="{{$edbold|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="b" data-id="desc">
|
||||||
<i class="fa fa-bold"></i>
|
<i class="fa fa-bold"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="icon quote" style="cursor: pointer;" title="{{$edquote|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="quote" data-id="desc">
|
<a class="icon quote" style="cursor: pointer;" title="{{$edquote|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="quote" data-id="desc">
|
||||||
<i class="fa fa-quote-left"></i>
|
<i class="fa fa-quote-left"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<div id="event-location-text"><b>{{$l_text}}</b></div>
|
||||||
|
<textarea id="comment-edit-text-loc" class="form-control" name="location">{{$l_orig}}</textarea>
|
||||||
|
<ul id="comment-tools-loc" class="comment-edit-bb comment-icon-list nav nav-pills hidden-xs pull-left">
|
||||||
|
{{* commented out because it isn't implemented yet
|
||||||
|
<li>
|
||||||
|
<a class="icon" style="cursor: pointer;" title="{{$edimg|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="img" data-id="loc">
|
||||||
|
<i class="fa fa-picture-o"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
*}}
|
||||||
|
<li>
|
||||||
|
<a class="icon bb-url" style="cursor: pointer;" title="{{$edurl|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="url" data-id="loc">
|
||||||
|
<i class="fa fa-link"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="icon bb-video" style="cursor: pointer;" title="{{$edvideo|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="video" data-id="loc">
|
||||||
|
<i class="fa fa-video-camera"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a class="icon underline" style="cursor: pointer;" title="{{$eduline|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="u" data-id="loc">
|
||||||
|
<i class="fa fa-underline"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="icon italic" style="cursor: pointer;" title="{{$editalic|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="i" data-id="loc">
|
||||||
|
<i class="fa fa-italic"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="icon bold" style="cursor: pointer;" title="{{$edbold|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="b" data-id="loc">
|
||||||
|
<i class="fa fa-bold"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="icon quote" style="cursor: pointer;" title="{{$edquote|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="quote" data-id="loc">
|
||||||
|
<i class="fa fa-quote-left"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{if ! $eid}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$share}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<div class="pull-right" >
|
||||||
|
<button id="event-submit" type="submit" name="submit" class="btn btn-primary" value="{{$submit|escape:'html'}}">{{$submit}}</button>
|
||||||
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div id="event-acl-wrapper" style="display: none">
|
||||||
<div id="event-location-text"><b>{{$l_text}}</b></div>
|
{{$acl}}
|
||||||
<textarea id="comment-edit-text-loc" class="form-control" name="location">{{$l_orig}}</textarea>
|
|
||||||
<ul id="comment-tools-loc" class="comment-edit-bb comment-icon-list nav nav-pills hidden-xs pull-left">
|
|
||||||
<li>
|
|
||||||
<a class="icon" style="cursor: pointer;" title="{{$edimg|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="img" data-id="loc">
|
|
||||||
<i class="fa fa-picture-o"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="icon bb-url" style="cursor: pointer;" title="{{$edurl|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="url" data-id="loc">
|
|
||||||
<i class="fa fa-link"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="icon bb-video" style="cursor: pointer;" title="{{$edvideo|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="video" data-id="loc">
|
|
||||||
<i class="fa fa-video-camera"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a class="icon underline" style="cursor: pointer;" title="{{$eduline|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="u" data-id="loc">
|
|
||||||
<i class="fa fa-underline"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="icon italic" style="cursor: pointer;" title="{{$editalic|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="i" data-id="loc">
|
|
||||||
<i class="fa fa-italic"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="icon bold" style="cursor: pointer;" title="{{$edbold|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="b" data-id="loc">
|
|
||||||
<i class="fa fa-bold"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="icon quote" style="cursor: pointer;" title="{{$edquote|escape:'html'}}" data-role="insert-formatting" data-comment=" " data-bbcode="quote" data-id="loc">
|
|
||||||
<i class="fa fa-quote-left"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="clear"></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="checkbox" name="share" value="1" id="event-share-checkbox" {{$sh_checked}} /> <div id="event-share-text">{{$sh_text}}</div>
|
<div id="event-preview" style="display: none"></div>
|
||||||
<div id="event-share-break"></div>
|
|
||||||
|
|
||||||
<input id="event-edit-preview" type="submit" name="preview" value="{{$preview|escape:'html'}}" onclick="doEventPreview(); return false;" />
|
<div class="clear"></div>
|
||||||
<input id="event-submit" type="submit" name="submit" value="{{$submit|escape:'html'}}" />
|
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="event-acl-wrapper" style="display: none">
|
<script>
|
||||||
{{$acl}}
|
$(document).ready( function() {
|
||||||
</div>
|
// disable finish date input if it isn't available
|
||||||
|
enableDisableFinishDate();
|
||||||
<div class="clear"></div>
|
// load bbcode autocomplete for the description textarea
|
||||||
|
$('#comment-edit-text-desc, #comment-edit-text-loc').bbco_autocomplete('bbcode');
|
||||||
</form>
|
});
|
||||||
|
</script>
|
|
@ -5,16 +5,18 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
// loads the event into a modal
|
||||||
function showEvent(eventid) {
|
function showEvent(eventid) {
|
||||||
|
|
||||||
addToModal('{{$baseurl}}/events/?id='+eventid);
|
addToModal('{{$baseurl}}/events/?id='+eventid);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Load the html of the actual event and incect the output to the
|
||||||
|
// event-edit section
|
||||||
function doEventPreview() {
|
function doEventPreview() {
|
||||||
$('#event-edit-preview').val(1);
|
$('#event-edit-preview').val(1);
|
||||||
$.post('events',$('#event-edit-form').serialize(), function(data) {
|
$.post('events',$('#event-edit-form').serialize(), function(data) {
|
||||||
$.colorbox({ html: data });
|
$("#event-preview").append(data);
|
||||||
});
|
});
|
||||||
$('#event-edit-preview').val(0);
|
$('#event-edit-preview').val(0);
|
||||||
}
|
}
|
||||||
|
@ -22,10 +24,11 @@
|
||||||
function changeView(action, viewName) {
|
function changeView(action, viewName) {
|
||||||
$('#events-calendar').fullCalendar(action, viewName);
|
$('#events-calendar').fullCalendar(action, viewName);
|
||||||
var view = $('#events-calendar').fullCalendar('getView');
|
var view = $('#events-calendar').fullCalendar('getView');
|
||||||
$('#title').text(view.title);
|
$('#fc-title').text(view.title);
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
// start the fullCalendar
|
||||||
$('#events-calendar').fullCalendar({
|
$('#events-calendar').fullCalendar({
|
||||||
firstDay: {{$i18n.firstDay}},
|
firstDay: {{$i18n.firstDay}},
|
||||||
monthNames: ['{{$i18n.January}}','{{$i18n.February}}','{{$i18n.March}}','{{$i18n.April}}','{{$i18n.May}}','{{$i18n.June}}','{{$i18n.July}}','{{$i18n.August}}','{{$i18n.September}}','{{$i18n.October}}','{{$i18n.November}}','{{$i18n.December}}'],
|
monthNames: ['{{$i18n.January}}','{{$i18n.February}}','{{$i18n.March}}','{{$i18n.April}}','{{$i18n.May}}','{{$i18n.June}}','{{$i18n.July}}','{{$i18n.August}}','{{$i18n.September}}','{{$i18n.October}}','{{$i18n.November}}','{{$i18n.December}}'],
|
||||||
|
@ -159,9 +162,10 @@
|
||||||
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
$('body').change("#event-share-checkbox", function() {
|
// go to the permissions tab if the checkbox is checked
|
||||||
|
$('body').change("#id_share", function() {
|
||||||
|
|
||||||
if ($('#event-share-checkbox').is(':checked') && !( $('#event-share-checkbox').attr("disabled"))) {
|
if ($('#id_share').is(':checked') && !( $('#id_share').attr("disabled"))) {
|
||||||
$('#acl-wrapper').show();
|
$('#acl-wrapper').show();
|
||||||
$("a#event-perms-lnk").parent("li").show();
|
$("a#event-perms-lnk").parent("li").show();
|
||||||
toggleEventNav("a#event-perms-lnk");
|
toggleEventNav("a#event-perms-lnk");
|
||||||
|
@ -173,7 +177,12 @@
|
||||||
}
|
}
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
|
// disable the finish time input if the user disable it
|
||||||
|
$('body').change("#id_nofinish", function() {
|
||||||
|
enableDisableFinishDate()
|
||||||
|
}).trigger('change');
|
||||||
|
|
||||||
|
// js for the permission sextion
|
||||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||||
var selstr;
|
var selstr;
|
||||||
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
||||||
|
@ -186,12 +195,26 @@
|
||||||
|
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
// Event nav menu.
|
// Change the event nav menu.tabs on click
|
||||||
$("body").on("click", "#event-nav li a", function(e){
|
$("body").on("click", "#event-nav > li > a", function(e){
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
toggleEventNav(this);
|
toggleEventNav(this);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// this is experimental. We maybe can make use of it to inject
|
||||||
|
// some js code while the event modal opens
|
||||||
|
//$('body').on('show.bs.modal', function () {
|
||||||
|
// enableDisableFinishDate();
|
||||||
|
//});
|
||||||
|
|
||||||
|
// clear some elements (e.g. the event-preview container) when
|
||||||
|
// selecting a event nav link so it don't appear more than once
|
||||||
|
$('body').on("click", "#event-nav a", function(e) {
|
||||||
|
$("#event-preview").empty();
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
@ -200,18 +223,19 @@
|
||||||
// the following functions show/hide the specific event-edit content
|
// the following functions show/hide the specific event-edit content
|
||||||
// in dependence of the selected nav
|
// in dependence of the selected nav
|
||||||
function eventAclActive() {
|
function eventAclActive() {
|
||||||
$("#event-edit-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").hide();
|
$("#event-edit-wrapper, #event-preview").hide();
|
||||||
$("#event-acl-wrapper").show();
|
$("#event-acl-wrapper").show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function previewActive() {
|
function eventPreviewActive() {
|
||||||
$(".modal-body #profile-jot-wrapper, .modal-body #profile-jot-acl-wrapper,.modal-body #jot-fbrowser-wrapper").hide();
|
$("#event-acl-wrapper, #event-edit-wrapper").hide();
|
||||||
preview_post();
|
$("#event-preview").show();
|
||||||
|
doEventPreview();
|
||||||
}
|
}
|
||||||
|
|
||||||
function eventEditActive() {
|
function eventEditActive() {
|
||||||
$("#event-acl-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").hide();
|
$("#event-acl-wrapper, #event-preview").hide();
|
||||||
$("#event-edit-wrapper").show();
|
$("#event-edit-wrapper").show();
|
||||||
|
|
||||||
//make sure jot text does have really the active class (we do this because there are some
|
//make sure jot text does have really the active class (we do this because there are some
|
||||||
|
@ -226,4 +250,25 @@
|
||||||
// add the active class to the parent of the link which was selected
|
// add the active class to the parent of the link which was selected
|
||||||
$(elm).parent("li").addClass("active");
|
$(elm).parent("li").addClass("active");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this function load the content of the edit url into a modal
|
||||||
|
function eventEdit(url) {
|
||||||
|
var char = qOrAmp(url);
|
||||||
|
url = url + char + 'mode=none';
|
||||||
|
|
||||||
|
$.get(url, function(data) {
|
||||||
|
$("#modal-body").empty();
|
||||||
|
$("#modal-body").append(data);
|
||||||
|
}).done(function() {
|
||||||
|
loadModalTitle();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// disable the input for the finish date if it is not available
|
||||||
|
function enableDisableFinishDate() {
|
||||||
|
if( $('#id_nofinish').is(':checked'))
|
||||||
|
$('#id_finish_text').prop("disabled", true);
|
||||||
|
else
|
||||||
|
$('#id_finish_text').prop("disabled", false);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div class="generic-page-wrapper">
|
<div class="generic-page-wrapper">
|
||||||
{{$tabs}}
|
{{$tabs}}
|
||||||
{{include file="section_title.tpl" title=$title}}
|
{{include file="section_title.tpl" title=$title}}
|
||||||
<div id="new-event-link"><a href="{{$new_event.0}}" >{{$new_event.1}}</a></div>
|
|
||||||
<div id="new-event-link"><a onclick="addToModal('{{$new_event.0}}')" >{{$new_event.1}}</a></div>
|
<div id="new-event-link"><a onclick="addToModal('{{$new_event.0}}')" >{{$new_event.1}}</a></div>
|
||||||
|
|
||||||
<div id="fc-header">
|
<div id="fc-header">
|
||||||
|
|
|
@ -70,9 +70,9 @@ $(document).ready(function() {
|
||||||
return false;
|
return false;
|
||||||
});*/
|
});*/
|
||||||
|
|
||||||
$('#event-share-checkbox').change(function() {
|
$('#id_share').change(function() {
|
||||||
|
|
||||||
if ($('#event-share-checkbox').is(':checked')) {
|
if ($('#id_share').is(':checked')) {
|
||||||
$('#acl-wrapper').show();
|
$('#acl-wrapper').show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -12,24 +12,15 @@
|
||||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||||
|
|
||||||
<div id="event-start-text">{{$s_text}}</div>
|
|
||||||
{{$s_dsel}}
|
{{$s_dsel}}
|
||||||
|
|
||||||
<div id="event-finish-text">{{$f_text}}</div>
|
|
||||||
{{$f_dsel}}
|
{{$f_dsel}}
|
||||||
|
|
||||||
<div id="event-datetime-break"></div>
|
{{include file="field_checkbox.tpl" field=$nofinish}}
|
||||||
|
|
||||||
<input type="checkbox" name="nofinish" value="1" id="event-nofinish-checkbox" {{$n_checked}} /> <div id="event-nofinish-text">{{$n_text}}</div>
|
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||||
|
|
||||||
<div id="event-nofinish-break"></div>
|
{{include file="field_input.tpl" field=$summary}}
|
||||||
|
|
||||||
<input type="checkbox" name="adjust" value="1" id="event-adjust-checkbox" {{$a_checked}} /> <div id="event-adjust-text">{{$a_text}}</div>
|
|
||||||
|
|
||||||
<div id="event-adjust-break"></div>
|
|
||||||
|
|
||||||
<div id="event-summary-text">{{$t_text}}</div>
|
|
||||||
<input type="text" id="event-summary" name="summary" value="{{$t_orig}}" />
|
|
||||||
|
|
||||||
|
|
||||||
<div id="event-desc-text">{{$d_text}}</div>
|
<div id="event-desc-text">{{$d_text}}</div>
|
||||||
|
@ -40,8 +31,9 @@
|
||||||
<textarea id="event-location-textarea" rows="10" cols="70" name="location">{{$l_orig}}</textarea>
|
<textarea id="event-location-textarea" rows="10" cols="70" name="location">{{$l_orig}}</textarea>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<input type="checkbox" name="share" value="1" id="event-share-checkbox" {{$sh_checked}} /> <div id="event-share-text">{{$sh_text}}</div>
|
{{if ! $eid}}
|
||||||
<div id="event-share-break"></div>
|
{{include file="field_checkbox.tpl" field=$share}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{$acl}}
|
{{$acl}}
|
||||||
|
|
||||||
|
|
|
@ -10,23 +10,23 @@
|
||||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||||
|
|
||||||
{{include file="field_custom.tpl" field=array('start_text', $s_text, $s_dsel, "")}}
|
{{$s_dsel}}
|
||||||
{{include file="field_custom.tpl" field=array('finish_text', $f_text, $f_dsel, "")}}
|
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=array('nofinish', $n_text, $n_checked, "")}}
|
{{$f_dsel}}
|
||||||
{{include file="field_checkbox.tpl" field=array('adjust', $a_text, $a_checked, "")}}
|
|
||||||
|
{{include file="field_checkbox.tpl" field=$nofinish}}
|
||||||
|
|
||||||
|
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||||
<hr>
|
<hr>
|
||||||
{{include file="field_input.tpl" field=array('summary', $t_text, $t_orig, "")}}
|
{{include file="field_input.tpl" field=$summary}}
|
||||||
{{include file="field_textarea.tpl" field=array('desc', $d_text, $d_orig, "")}}
|
{{include file="field_textarea.tpl" field=array('desc', $d_text, $d_orig, "")}}
|
||||||
|
|
||||||
{{include file="field_textarea.tpl" field=array('location', $l_text, $l_orig, "")}}
|
{{include file="field_textarea.tpl" field=array('location', $l_text, $l_orig, "")}}
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div class='field checkbox' id='div_id_share'>
|
{{if ! $eid}}
|
||||||
<label for='id_share'>{{$sh_text}}</label>
|
{{include file="field_checkbox.tpl" field=$share}}
|
||||||
<input type="checkbox" name='share' id='id_share' aria-describedby='share_tip' value="1" {{$sh_checked}}>
|
{{/if}}
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{$acl}}
|
{{$acl}}
|
||||||
|
|
||||||
|
|
|
@ -13,24 +13,15 @@
|
||||||
<input type="hidden" name="uri" value="{{$uri}}" />
|
<input type="hidden" name="uri" value="{{$uri}}" />
|
||||||
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
<input type="hidden" name="preview" id="event-edit-preview" value="0" />
|
||||||
|
|
||||||
<div id="event-start-text">{{$s_text}}</div>
|
|
||||||
{{$s_dsel}}
|
{{$s_dsel}}
|
||||||
|
|
||||||
<div id="event-finish-text">{{$f_text}}</div>
|
|
||||||
{{$f_dsel}}
|
{{$f_dsel}}
|
||||||
|
|
||||||
<div id="event-datetime-break"></div>
|
{{include file="field_checkbox.tpl" field=$nofinish}}
|
||||||
|
|
||||||
<input type="checkbox" name="nofinish" value="1" id="event-nofinish-checkbox" {{$n_checked}} /> <div id="event-nofinish-text">{{$n_text}}</div>
|
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||||
|
|
||||||
<div id="event-nofinish-break"></div>
|
{{include file="field_input.tpl" field=$summary}}
|
||||||
|
|
||||||
<input type="checkbox" name="adjust" value="1" id="event-adjust-checkbox" {{$a_checked}} /> <div id="event-adjust-text">{{$a_text}}</div>
|
|
||||||
|
|
||||||
<div id="event-adjust-break"></div>
|
|
||||||
|
|
||||||
<div id="event-summary-text">{{$t_text}}</div>
|
|
||||||
<input type="text" size="65" id="event-summary" name="summary" value="{{$t_orig|escape:'html'}}" />
|
|
||||||
|
|
||||||
|
|
||||||
<div id="event-desc-text">{{$d_text}}</div>
|
<div id="event-desc-text">{{$d_text}}</div>
|
||||||
|
@ -61,8 +52,9 @@
|
||||||
|
|
||||||
<div id="event-location-break"></div>
|
<div id="event-location-break"></div>
|
||||||
|
|
||||||
<input type="checkbox" name="share" value="1" id="event-share-checkbox" {{$sh_checked}} /> <div id="event-share-text">{{$sh_text}}</div>
|
{{if ! $eid}}
|
||||||
<div id="event-share-break"></div>
|
{{include file="field_checkbox.tpl" field=$share}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{$acl}}
|
{{$acl}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue