Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
This commit is contained in:
commit
03d3cbdbf8
@ -641,7 +641,7 @@ function configure_cron_daily {
|
|||||||
# every 10 min for poller.php
|
# every 10 min for poller.php
|
||||||
if [ -z "`grep 'poller.php' /etc/crontab`" ]
|
if [ -z "`grep 'poller.php' /etc/crontab`" ]
|
||||||
then
|
then
|
||||||
echo "*/10 * * * * www-data cd /var/www/html; php include/poller.php >> /dev/null 2>&1" >> /etc/crontab
|
echo "*/10 * * * * www-data cd /var/www/html; php Zotlabs/Daemon/Master.php Cron >> /dev/null 2>&1" >> /etc/crontab
|
||||||
fi
|
fi
|
||||||
# Run external script daily at 05:30
|
# Run external script daily at 05:30
|
||||||
# - stop apache and mysql-server
|
# - stop apache and mysql-server
|
||||||
|
@ -67,7 +67,7 @@ class Site {
|
|||||||
$techlevel_lock = ((x($_POST,'techlock')) ? intval($_POST['techlock']) : 0);
|
$techlevel_lock = ((x($_POST,'techlock')) ? intval($_POST['techlock']) : 0);
|
||||||
$imagick_path = ((x($_POST,'imagick_path')) ? trim($_POST['imagick_path']) : '');
|
$imagick_path = ((x($_POST,'imagick_path')) ? trim($_POST['imagick_path']) : '');
|
||||||
$thumbnail_security = ((x($_POST,'thumbnail_security')) ? intval($_POST['thumbnail_security']) : 0);
|
$thumbnail_security = ((x($_POST,'thumbnail_security')) ? intval($_POST['thumbnail_security']) : 0);
|
||||||
$force_queue = ((intval($_POST['force_queue']) > 0) ? intval($_POST['force_queue']) : 300);
|
$force_queue = ((intval($_POST['force_queue']) > 0) ? intval($_POST['force_queue']) : 3000);
|
||||||
|
|
||||||
$techlevel = null;
|
$techlevel = null;
|
||||||
if(array_key_exists('techlevel', $_POST))
|
if(array_key_exists('techlevel', $_POST))
|
||||||
@ -332,7 +332,7 @@ class Site {
|
|||||||
'$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")),
|
'$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")),
|
||||||
'$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.")),
|
'$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.")),
|
||||||
'$delivery_batch_count' => array('delivery_batch_count', t('Deliveries per process'),(x(get_config('system','delivery_batch_count'))?get_config('system','delivery_batch_count'):1), t("Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5.")),
|
'$delivery_batch_count' => array('delivery_batch_count', t('Deliveries per process'),(x(get_config('system','delivery_batch_count'))?get_config('system','delivery_batch_count'):1), t("Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5.")),
|
||||||
'$force_queue' => array('force_queue', t("Queue Threshold"), get_config('system','force_queue_threshold',300), t("Always defer immediate delivery if queue contains more than this number of entries.")),
|
'$force_queue' => array('force_queue', t("Queue Threshold"), get_config('system','force_queue_threshold',3000), t("Always defer immediate delivery if queue contains more than this number of entries.")),
|
||||||
'$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")),
|
'$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")),
|
||||||
'$imagick_path' => array('imagick_path', t("Path to ImageMagick convert program"), get_config('system','imagick_convert_path'), t("If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert")),
|
'$imagick_path' => array('imagick_path', t("Path to ImageMagick convert program"), get_config('system','imagick_convert_path'), t("If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert")),
|
||||||
'$thumbnail_security' => array('thumbnail_security', t("Allow SVG thumbnails in file browser"), get_config('system','thumbnail_security',0), t("WARNING: SVG images may contain malicious code.")),
|
'$thumbnail_security' => array('thumbnail_security', t("Allow SVG thumbnails in file browser"), get_config('system','thumbnail_security',0), t("WARNING: SVG images may contain malicious code.")),
|
||||||
|
2
boot.php
2
boot.php
@ -51,7 +51,7 @@ require_once('include/attach.php');
|
|||||||
require_once('include/bbcode.php');
|
require_once('include/bbcode.php');
|
||||||
|
|
||||||
define ( 'PLATFORM_NAME', 'hubzilla' );
|
define ( 'PLATFORM_NAME', 'hubzilla' );
|
||||||
define ( 'STD_VERSION', '3.1.1' );
|
define ( 'STD_VERSION', '3.1.2' );
|
||||||
define ( 'ZOT_REVISION', '1.3' );
|
define ( 'ZOT_REVISION', '1.3' );
|
||||||
|
|
||||||
define ( 'DB_UPDATE_VERSION', 1198 );
|
define ( 'DB_UPDATE_VERSION', 1198 );
|
||||||
|
@ -100,38 +100,6 @@ EOT;
|
|||||||
|
|
||||||
if(local_channel()) {
|
if(local_channel()) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$nav['network'] = array('network', t('Activity'), "", t('Network Activity'),'network_nav_btn');
|
|
||||||
$nav['network']['all'] = [ 'network', t('View your network activity'), '','' ];
|
|
||||||
$nav['network']['mark'] = array('', t('Mark all activity notifications seen'), '','');
|
|
||||||
|
|
||||||
$nav['home'] = array('channel/' . $channel['channel_address'], t('Channel Home'), "", t('Channel home'),'home_nav_btn');
|
|
||||||
$nav['home']['all'] = [ 'channel/' . $channel['channel_address'], t('View your channel home'), '' , '' ];
|
|
||||||
$nav['home']['mark'] = array('', t('Mark all channel notifications seen'), '','');
|
|
||||||
|
|
||||||
|
|
||||||
$nav['intros'] = array('connections/ifpending', t('Connections'), "", t('Connections'),'connections_nav_btn');
|
|
||||||
if(is_site_admin())
|
|
||||||
$nav['registrations'] = array('admin/accounts', t('Registrations'), "", t('Registrations'),'registrations_nav_btn');
|
|
||||||
|
|
||||||
|
|
||||||
$nav['notifications'] = array('notifications/system', t('Notices'), "", t('Notifications'),'notifications_nav_btn');
|
|
||||||
$nav['notifications']['all']=array('notifications/system', t('View all notifications'), "", "");
|
|
||||||
$nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '','');
|
|
||||||
|
|
||||||
$nav['messages'] = array('mail/combined', t('Mail'), "", t('Private mail'),'mail_nav_btn');
|
|
||||||
$nav['messages']['all']=array('mail/combined', t('View your private messages'), "", "");
|
|
||||||
$nav['messages']['mark'] = array('', t('Mark all private messages seen'), '','');
|
|
||||||
$nav['messages']['inbox'] = array('mail/inbox', t('Inbox'), "", t('Inbox'));
|
|
||||||
$nav['messages']['outbox']= array('mail/outbox', t('Outbox'), "", t('Outbox'));
|
|
||||||
$nav['messages']['new'] = array('mail/new', t('New Message'), "", t('New Message'));
|
|
||||||
|
|
||||||
|
|
||||||
$nav['all_events'] = array('events', t('Events'), "", t('Event Calendar'),'events_nav_btn');
|
|
||||||
$nav['all_events']['all']=array('events', t('View events'), "", "");
|
|
||||||
$nav['all_events']['mark'] = array('', t('Mark all events seen'), '','');
|
|
||||||
|
|
||||||
if(! $_SESSION['delegate']) {
|
if(! $_SESSION['delegate']) {
|
||||||
$nav['manage'] = array('manage', t('Channel Manager'), "", t('Manage Your Channels'),'manage_nav_btn');
|
$nav['manage'] = array('manage', t('Channel Manager'), "", t('Manage Your Channels'),'manage_nav_btn');
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
#notifications {
|
|
||||||
display: none;
|
|
||||||
}
|
|
@ -178,6 +178,14 @@ a.wikilist {
|
|||||||
max-height: 70vh;
|
max-height: 70vh;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.notifications-textinput input {
|
||||||
|
font-family: FontAwesome, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.notifications-textinput {
|
||||||
|
padding: .75rem 0.85rem;
|
||||||
|
}
|
||||||
|
|
||||||
.notification-content.collapsing {
|
.notification-content.collapsing {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -878,33 +878,26 @@ function justifyPhotosAjax(id) {
|
|||||||
|
|
||||||
function notify_popup_loader(notifyType) {
|
function notify_popup_loader(notifyType) {
|
||||||
|
|
||||||
/* notifications template - different for navbar and notifications widget */
|
|
||||||
var navbar_notifications_tpl= unescape($("#navbar-notifications-template[rel=template]").html());
|
|
||||||
var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
|
var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
|
||||||
var notifications_all = unescape($('<div>').append( $("#nav-" + notifyType + "-see-all").clone() ).html()); //outerHtml hack
|
|
||||||
var notifications_mark = unescape($('<div>').append( $("#nav-" + notifyType + "-mark-all").clone() ).html()); //outerHtml hack
|
|
||||||
var notifications_tt_only = unescape($('<div>').append( $("#tt-" + notifyType + "-only").clone() ).html()); //outerHtml hack
|
|
||||||
var notifications_empty = unescape($("#nav-" + notifyType + "-menu").html());
|
|
||||||
|
|
||||||
var notify_menu = $("#nav-" + notifyType + "-menu");
|
var notify_menu = $("#nav-" + notifyType + "-menu");
|
||||||
|
|
||||||
var pingExCmd = 'ping/' + notifyType + ((localUser != 0) ? '?f=&uid=' + localUser : '');
|
var pingExCmd = 'ping/' + notifyType + ((localUser != 0) ? '?f=&uid=' + localUser : '');
|
||||||
|
|
||||||
$.get(pingExCmd, function(data) {
|
$.get(pingExCmd, function(data) {
|
||||||
|
|
||||||
if(data.invalid == 1) {
|
if(data.invalid == 1) {
|
||||||
window.location.href=window.location.href;
|
window.location.href=window.location.href;
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark + notifications_tt_only);
|
//$("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark + notifications_tt_only + notifications_cn_only);
|
||||||
$("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark + notifications_tt_only);
|
//$("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark + notifications_tt_only + notifications_cn_only);
|
||||||
|
|
||||||
$("." + notifyType + "-update").html(data.notify.length);
|
$("." + notifyType + "-update").html(data.notify.length);
|
||||||
|
|
||||||
|
notify_menu.html('');
|
||||||
|
|
||||||
$(data.notify).each(function() {
|
$(data.notify).each(function() {
|
||||||
html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top);
|
|
||||||
$("#navbar-" + notifyType + "-menu").append(html);
|
|
||||||
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top);
|
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top);
|
||||||
$("#nav-" + notifyType + "-menu").append(html);
|
notify_menu.append(html);
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){
|
$(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){
|
||||||
@ -915,11 +908,22 @@ function notify_popup_loader(notifyType) {
|
|||||||
|
|
||||||
if($('#tt-' + notifyType + '-only').hasClass('active'))
|
if($('#tt-' + notifyType + '-only').hasClass('active'))
|
||||||
$('#nav-' + notifyType + '-menu [data-thread_top=false]').hide();
|
$('#nav-' + notifyType + '-menu [data-thread_top=false]').hide();
|
||||||
|
|
||||||
|
var filter = $('#cn-' + notifyType + '-input').val();
|
||||||
|
if(filter) {
|
||||||
|
$('#nav-' + notifyType + '-menu .notification').each(function(i, el){
|
||||||
|
var cn = $(el).data('contact_name').toLowerCase();
|
||||||
|
if(cn.indexOf(filter) === -1)
|
||||||
|
$(this).addClass('d-none');
|
||||||
|
else
|
||||||
|
$(this).removeClass('d-none');
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
if(notify_menu.hasClass('show')) {
|
if($('#nav-' + notifyType + '-sub').hasClass('show')) {
|
||||||
console.log('updating ' + notifyType + ' notifications...');
|
console.log('updating ' + notifyType + ' notifications...');
|
||||||
setTimeout(notify_popup_loader, updateInterval, notifyType);
|
setTimeout(notify_popup_loader, updateInterval, notifyType);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
<div id="navbar-notifications-template" rel="template" style="display:none;">
|
|
||||||
<a class="dropdown-item clearfix dropdown-notification {5}" href="{0}" title="{2} {3}"><img class="menu-img-3" data-src="{1}"><span class="contactname">{2}</span><span class="dropdown-sub-text">{3}<br>{4}</span></a>
|
|
||||||
</div>
|
|
@ -16,12 +16,9 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{if $userinfo}}
|
{{if $userinfo}}
|
||||||
<div class="dropdown usermenu">
|
<div class="dropdown">
|
||||||
<div class="fakelink" data-toggle="dropdown">
|
<div class="fakelink usermenu" data-toggle="dropdown">
|
||||||
<img id="avatar" src="{{$userinfo.icon}}" alt="{{$userinfo.name}}">
|
<img id="avatar" src="{{$userinfo.icon}}" alt="{{$userinfo.name}}">
|
||||||
<i class="fa fa-caret-down"></i>
|
<i class="fa fa-caret-down"></i>
|
||||||
</div>
|
</div>
|
||||||
@ -31,7 +28,7 @@
|
|||||||
<a class="dropdown-item{{if $usermenu.2}} active{{/if}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}" role="menuitem" id="{{$usermenu.4}}">{{$usermenu.1}}</a>
|
<a class="dropdown-item{{if $usermenu.2}} active{{/if}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}" role="menuitem" id="{{$usermenu.4}}">{{$usermenu.1}}</a>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
{{if $nav.manage}}
|
{{if $nav.manage}}
|
||||||
<a class="dropdown-item{{if $sel.active == Manage}} active{{/if}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}" role="menuitem" id="{{$nav.manage.4}}">{{$nav.manage.1}}</a>
|
<a class="dropdown-item{{if $sel.name == Manage}} active{{/if}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}" role="menuitem" id="{{$nav.manage.4}}">{{$nav.manage.1}}</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $nav.channels}}
|
{{if $nav.channels}}
|
||||||
{{foreach $nav.channels as $chan}}
|
{{foreach $nav.channels as $chan}}
|
||||||
@ -43,7 +40,11 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $nav.settings}}
|
{{if $nav.settings}}
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<a class="dropdown-item{{if $sel.active == Settings}} active{{/if}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}" role="menuitem" id="{{$nav.settings.4}}">{{$nav.settings.1}}</a>
|
<a class="dropdown-item{{if $sel.name == Settings}} active{{/if}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}" role="menuitem" id="{{$nav.settings.4}}">{{$nav.settings.1}}</a>
|
||||||
|
{{/if}}
|
||||||
|
{{if $nav.admin}}
|
||||||
|
<div class="dropdown-divider"></div>
|
||||||
|
<a class="dropdown-item{{if $sel.name == Admin}} active{{/if}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" role="menuitem" id="{{$nav.admin.4}}">{{$nav.admin.1}}</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $nav.logout}}
|
{{if $nav.logout}}
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
@ -51,7 +52,6 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if ! $is_owner}}
|
{{if ! $is_owner}}
|
||||||
<div class="dropdown-menu" role="menu" aria-labelledby="avatar">
|
<div class="dropdown-menu" role="menu" aria-labelledby="avatar">
|
||||||
<a class="dropdown-item" href="{{$nav.rusermenu.0}}" role="menuitem">{{$nav.rusermenu.1}}</a>
|
<a class="dropdown-item" href="{{$nav.rusermenu.0}}" role="menuitem">{{$nav.rusermenu.1}}</a>
|
||||||
@ -59,129 +59,37 @@
|
|||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
{{if $sel.name}}
|
||||||
|
<div id="nav-app-link-wrapper" class="navbar-nav mr-auto">
|
||||||
|
<a id="nav-app-link" href="{{$url}}" class="nav-link text-truncate">
|
||||||
|
{{$sel.name}}
|
||||||
|
{{if $sitelocation}}
|
||||||
|
<br><small>{{$sitelocation}}</small>
|
||||||
|
{{/if}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{if $navbar_apps}}
|
|
||||||
<ul class="navbar-nav mr-auto d-none d-xl-flex">
|
|
||||||
{{foreach $navbar_apps as $navbar_app}}
|
|
||||||
<li>
|
|
||||||
{{$navbar_app}}
|
|
||||||
</li>
|
|
||||||
{{/foreach}}
|
|
||||||
</ul>
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
<div class="navbar-toggler-right">
|
<div class="navbar-toggler-right">
|
||||||
|
|
||||||
{{if $nav.help.6}}
|
{{if $nav.help.6}}
|
||||||
<button id="context-help-btn" class="navbar-toggler border-0" type="button" onclick="contextualHelp(); return false;">
|
<button id="context-help-btn" class="navbar-toggler border-0" type="button" onclick="contextualHelp(); return false;">
|
||||||
<i class="fa fa-question-circle"></i>
|
<i class="fa fa-question-circle"></i>
|
||||||
</button>
|
</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
<button id="expand-aside" type="button" class="d-lg-none navbar-toggler border-0" data-toggle="offcanvas" data-target="#region_1">
|
||||||
<button id="expand-aside" type="button" class="navbar-toggler border-0" data-toggle="offcanvas" data-target="#region_1">
|
|
||||||
<i class="fa fa-arrow-circle-right" id="expand-aside-icon"></i>
|
<i class="fa fa-arrow-circle-right" id="expand-aside-icon"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{{if $localuser || $nav.pubs}}
|
{{if $localuser || $nav.pubs}}
|
||||||
<button id="notifications-btn-1" type="button" class="navbar-toggler border-0 text-white notifications-btn" data-toggle="collapse" data-target="#navbar-collapse-1">
|
<button id="notifications-btn-1" type="button" class="navbar-toggler border-0 text-white notifications-btn">
|
||||||
<i id="notifications-btn-icon-1" class="fa fa-exclamation notifications-btn-icon"></i>
|
<i id="notifications-btn-icon-1" class="fa fa-exclamation-circle notifications-btn-icon"></i>
|
||||||
</button>
|
</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<button id="menu-btn" class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbar-collapse-2">
|
<button id="menu-btn" class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbar-collapse-2">
|
||||||
<i class="fa fa-bars"></i>
|
<i class="fa fa-bars"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbar-collapse-1">
|
<div class="collapse navbar-collapse" id="navbar-collapse-1">
|
||||||
|
|
||||||
<ul class="navbar-nav mr-auto">
|
<ul class="navbar-nav mr-auto">
|
||||||
{{if $nav.network}}
|
|
||||||
<li class="nav-item dropdown network-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.network.3}}" id="{{$nav.network.4}}" data-toggle="dropdown" rel="#navbar-network-menu">
|
|
||||||
<i class="fa fa-fw fa-th"></i>
|
|
||||||
<span class="badge badge-pill badge-secondary network-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-network-menu" class="dropdown-menu" rel="network">
|
|
||||||
<a class="dropdown-item" id="nav-network-see-all" href="{{$nav.network.all.0}}">{{$nav.network.all.1}}</a>
|
|
||||||
<a class="dropdown-item" id="nav-network-mark-all" href="#" onclick="markRead('network'); return false;">{{$nav.network.mark.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
{{if $nav.home}}
|
|
||||||
<li class="nav-item dropdown home-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.home.3}}" id="{{$nav.home.4}}" data-toggle="dropdown" rel="#navbar-home-menu">
|
|
||||||
<i class="fa fa-fw fa-home"></i>
|
|
||||||
<span class="badge badge-pill badge-danger home-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-home-menu" class="dropdown-menu" rel="home">
|
|
||||||
<a class="dropdown-item" id="nav-home-see-all" href="{{$nav.home.all.0}}">{{$nav.home.all.1}}</a>
|
|
||||||
<a class="dropdown-item" id="nav-home-mark-all" href="#" onclick="markRead('home'); return false;">{{$nav.home.mark.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
{{if $nav.messages}}
|
|
||||||
<li class="nav-item dropdown mail-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.messages.3}}" id="{{$nav.messages.4}}" data-toggle="dropdown" rel="#navbar-mail-menu">
|
|
||||||
<i class="fa fa-fw fa-envelope"></i>
|
|
||||||
<span class="badge badge-pill badge-danger mail-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-mail-menu" class="dropdown-menu" rel="messages">
|
|
||||||
<a class="dropdown-item" id="nav-messages-see-all" href="{{$nav.messages.all.0}}">{{$nav.messages.all.1}}</a>
|
|
||||||
<a class="dropdown-item" id="nav-messages-mark-all" href="#" onclick="markRead('messages'); return false;">{{$nav.messages.mark.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
{{if $nav.all_events}}
|
|
||||||
<li class="nav-item dropdown all_events-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.all_events.3}}" id="{{$nav.all_events.4}}" data-toggle="dropdown" rel="#navbar-all_events-menu">
|
|
||||||
<i class="fa fa-fw fa-calendar"></i>
|
|
||||||
<span class="badge badge-pill badge-secondary all_events-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-all_events-menu" class="dropdown-menu" rel="all_events">
|
|
||||||
<a class="dropdown-item" id="nav-all_events-see-all" href="{{$nav.all_events.all.0}}">{{$nav.all_events.all.1}}</a>
|
|
||||||
<a class="dropdown-item" id="nav-all_events-mark-all" href="#" onclick="markRead('all_events'); return false;">{{$nav.all_events.mark.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
{{if $nav.intros}}
|
|
||||||
<li class="nav-item dropdown intros-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.intros.3}}" id="{{$nav.intros.4}}" data-toggle="dropdown" rel="#navbar-intros-menu">
|
|
||||||
<i class="fa fa-fw fa-users"></i>
|
|
||||||
<span class="badge badge-pill badge-danger intros-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-intros-menu" class="dropdown-menu" rel="intros">
|
|
||||||
<a class="dropdown-item" id="nav-intros-see-all" href="{{$nav.intros.all.0}}">{{$nav.intros.all.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
{{if $nav.notifications}}
|
|
||||||
<li class="nav-item dropdown notify-button" style="display: none;">
|
|
||||||
<a class="nav-link" href="#" title="{{$nav.notifications.1}}" id="{{$nav.notifications.4}}" data-toggle="dropdown" rel="#navbar-notify-menu">
|
|
||||||
<i class="fa fa-fw fa-exclamation"></i>
|
|
||||||
<span class="badge badge-pill badge-danger notify-update"></span>
|
|
||||||
</a>
|
|
||||||
<div id="navbar-notify-menu" class="dropdown-menu" rel="notify">
|
|
||||||
<a class="dropdown-item" id="nav-notify-see-all" href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a>
|
|
||||||
<a class="dropdown-item" id="nav-notify-mark-all" href="#" onclick="markRead('notify'); return false;">{{$nav.notifications.mark.1}}</a>
|
|
||||||
{{$emptynotifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
{{if $nav.login && !$userinfo}}
|
{{if $nav.login && !$userinfo}}
|
||||||
<li class="nav-item d-none d-xl-flex">
|
<li class="nav-item d-none d-xl-flex">
|
||||||
{{if $nav.loginmenu.1.4}}
|
{{if $nav.loginmenu.1.4}}
|
||||||
@ -205,16 +113,11 @@
|
|||||||
<a class="nav-link" href="{{$nav.alogout.0}}" title="{{$nav.alogout.3}}" id="{{$nav.alogout.4}}">{{$nav.alogout.1}}</a>
|
<a class="nav-link" href="{{$nav.alogout.0}}" title="{{$nav.alogout.3}}" id="{{$nav.alogout.4}}">{{$nav.alogout.1}}</a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<div id="banner" class="navbar-text">{{$banner}}</div>
|
||||||
|
|
||||||
|
<ul id="nav-right" class="navbar-nav ml-auto">
|
||||||
|
|
||||||
<div id="banner" class="navbar-text d-none d-xl-flex">{{$banner}}</div>
|
|
||||||
|
|
||||||
|
|
||||||
<ul id="nav-right" class="navbar-nav ml-auto d-none d-xl-flex">
|
|
||||||
<li class="nav-item collapse clearfix" id="nav-search">
|
<li class="nav-item collapse clearfix" id="nav-search">
|
||||||
<form class="form-inline" method="get" action="search" role="search">
|
<form class="form-inline" method="get" action="search" role="search">
|
||||||
<input class="form-control form-control-sm mt-1 mr-2" id="nav-search-text" type="text" value="" placeholder=" {{$help}}" name="search" title="{{$nav.search.3}}" onclick="this.submit();" onblur="closeMenu('nav-search'); openMenu('nav-search-btn');"/>
|
<input class="form-control form-control-sm mt-1 mr-2" id="nav-search-text" type="text" value="" placeholder=" {{$help}}" name="search" title="{{$nav.search.3}}" onclick="this.submit();" onblur="closeMenu('nav-search'); openMenu('nav-search-btn');"/>
|
||||||
@ -236,7 +139,7 @@
|
|||||||
<a class="nav-link text-white notifications-btn" href="#"><i id="notifications-btn-icon" class="fa fa-exclamation-circle notifications-btn-icon"></i></a>
|
<a class="nav-link text-white notifications-btn" href="#"><i id="notifications-btn-icon" class="fa fa-exclamation-circle notifications-btn-icon"></i></a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $channel_apps.0}}
|
{{if $channel_menu && $channel_apps.0}}
|
||||||
<li class="nav-item dropdown" id="channel-menu">
|
<li class="nav-item dropdown" id="channel-menu">
|
||||||
<a class="nav-link" href="#" data-toggle="dropdown"><img src="{{$channel_thumb}}" style="height:14px; width:14px;position:relative; top:-2px;" /></a>
|
<a class="nav-link" href="#" data-toggle="dropdown"><img src="{{$channel_thumb}}" style="height:14px; width:14px;position:relative; top:-2px;" /></a>
|
||||||
<div id="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
<div id="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
||||||
@ -246,12 +149,32 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{if $navbar_apps}}
|
||||||
|
{{foreach $navbar_apps as $navbar_app}}
|
||||||
|
<li>
|
||||||
|
{{$navbar_app}}
|
||||||
|
</li>
|
||||||
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
<li class="nav-item dropdown" id="app-menu">
|
<li class="nav-item dropdown" id="app-menu">
|
||||||
<a class="nav-link" href="#" data-toggle="dropdown"><i class="fa fa-fw fa-bars"></i></a>
|
<a class="nav-link" href="#" data-toggle="dropdown"><i class="fa fa-fw fa-bars"></i></a>
|
||||||
<div id="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
<div id="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
||||||
|
{{if $channel_apps.0 && ! $channel_menu}}
|
||||||
|
{{foreach $channel_apps as $channel_app}}
|
||||||
|
{{$channel_app}}
|
||||||
|
{{/foreach}}
|
||||||
|
<div class="dropdown-divider"></div>
|
||||||
|
<div class="dropdown-header sys-apps-toggle" onclick="$('#dropdown-menu').click(function(e) { e.stopPropagation(); }); openClose('sys_apps');">
|
||||||
|
{{$sysapps_toggle}}
|
||||||
|
</div>
|
||||||
|
<div id="sys_apps" style="display:none;">
|
||||||
|
{{/if}}
|
||||||
{{foreach $nav_apps as $nav_app}}
|
{{foreach $nav_apps as $nav_app}}
|
||||||
{{$nav_app}}
|
{{$nav_app}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
{{if $channel_apps.0 && ! $channel_menu}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
{{if $is_owner}}
|
{{if $is_owner}}
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<a class="dropdown-item" href="/apps"><i class="generic-icons-nav fa fa-fw fa-plus-circle"></i>{{$addapps}}</a>
|
<a class="dropdown-item" href="/apps"><i class="generic-icons-nav fa fa-fw fa-plus-circle"></i>{{$addapps}}</a>
|
||||||
@ -261,8 +184,6 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="collapse d-lg-none" id="navbar-collapse-2">
|
<div class="collapse d-lg-none" id="navbar-collapse-2">
|
||||||
<div class="navbar-nav mr-auto">
|
<div class="navbar-nav mr-auto">
|
||||||
{{if $channel_apps.0}}
|
{{if $channel_apps.0}}
|
||||||
@ -274,6 +195,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="sys-apps-collapsed" style="display:none;">
|
<div id="sys-apps-collapsed" style="display:none;">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{foreach $navbar_apps as $navbar_app}}
|
||||||
|
{{$navbar_app}}
|
||||||
|
{{/foreach}}
|
||||||
{{foreach $nav_apps as $nav_app}}
|
{{foreach $nav_apps as $nav_app}}
|
||||||
{{$nav_app|replace:'dropdown-item':'nav-link'}}
|
{{$nav_app|replace:'dropdown-item':'nav-link'}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
@ -65,6 +65,23 @@
|
|||||||
$('#nav-{{$notification.type}}-menu [data-thread_top=false]').toggle();
|
$('#nav-{{$notification.type}}-menu [data-thread_top=false]').toggle();
|
||||||
$(this).toggleClass('active sticky-top');
|
$(this).toggleClass('active sticky-top');
|
||||||
});
|
});
|
||||||
|
$(document).on('keyup', '#cn-{{$notification.type}}-input', function(e) {
|
||||||
|
var val = $('#cn-{{$notification.type}}-input').val().toLowerCase();
|
||||||
|
|
||||||
|
if(val)
|
||||||
|
$('#cn-{{$notification.type}}-only').addClass('active sticky-top');
|
||||||
|
else
|
||||||
|
$('#cn-{{$notification.type}}-only').removeClass('active sticky-top');
|
||||||
|
|
||||||
|
$("#nav-{{$notification.type}}-menu .notification").each(function(i, el){
|
||||||
|
var cn = $(el).data('contact_name').toLowerCase();
|
||||||
|
|
||||||
|
if(cn.indexOf(val) === -1)
|
||||||
|
$(this).addClass('d-none');
|
||||||
|
else
|
||||||
|
$(this).removeClass('d-none');
|
||||||
|
});
|
||||||
|
});
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
@ -90,7 +107,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="notifications" class="navbar-nav" data-children=".nav-item">
|
<div id="notifications" class="navbar-nav" data-children=".nav-item">
|
||||||
<div id="nav-notifications-template" rel="template">
|
<div id="nav-notifications-template" rel="template">
|
||||||
<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}" data-b64mid="{6}" data-notify_id="{7}" data-thread_top="{8}">
|
<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}" data-b64mid="{6}" data-notify_id="{7}" data-thread_top="{8}" data-contact_name="{2}">
|
||||||
<img class="menu-img-3" data-src="{1}">
|
<img class="menu-img-3" data-src="{1}">
|
||||||
<span class="contactname">{2}</span>
|
<span class="contactname">{2}</span>
|
||||||
<span class="dropdown-sub-text">{3}<br>{4}</span>
|
<span class="dropdown-sub-text">{3}<br>{4}</span>
|
||||||
@ -98,11 +115,11 @@
|
|||||||
</div>
|
</div>
|
||||||
{{foreach $notifications as $notification}}
|
{{foreach $notifications as $notification}}
|
||||||
<div class="collapse {{$notification.type}}-button">
|
<div class="collapse {{$notification.type}}-button">
|
||||||
<a class="list-group-item" href="#nav-{{$notification.type}}-menu" title="{{$notification.title}}" data-toggle="collapse" data-parent="#notifications" rel="#nav-{{$notification.type}}-menu">
|
<a class="list-group-item" href="#nav-{{$notification.type}}-sub" title="{{$notification.title}}" data-toggle="collapse" data-parent="#notifications" rel="#nav-{{$notification.type}}-menu">
|
||||||
<i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}}
|
<i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}}
|
||||||
<span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span>
|
<span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span>
|
||||||
</a>
|
</a>
|
||||||
<div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}">
|
<div id="nav-{{$notification.type}}-sub" class="collapse notification-content">
|
||||||
{{if $notification.viewall}}
|
{{if $notification.viewall}}
|
||||||
<a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">
|
<a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">
|
||||||
<i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}}
|
<i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}}
|
||||||
@ -117,10 +134,15 @@
|
|||||||
<div class="list-group-item cursor-pointer" id="tt-{{$notification.type}}-only">
|
<div class="list-group-item cursor-pointer" id="tt-{{$notification.type}}-only">
|
||||||
<i class="fa fa-fw fa-filter"></i> {{$notification.filter.label}}
|
<i class="fa fa-fw fa-filter"></i> {{$notification.filter.label}}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="list-group-item notifications-textinput" id="cn-{{$notification.type}}-only">
|
||||||
|
<input id="cn-{{$notification.type}}-input" type="text" class="form-control form-control-sm" placeholder=" Filter by name">
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
<div id="nav-{{$notification.type}}-menu" class="" rel="{{$notification.type}}">
|
||||||
{{$loading}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
{{$loading}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user