File: /home/slfopp7cb1df/www/sitepacket.com/system/app/Views/dashboards/custom_dashboards/view.php
<?php
echo view("dashboards/install_pwa");
?>
<div id="page-content" class="page-wrapper clearfix dashboard-view">
<?php
if (count($dashboards)) {
echo view("dashboards/dashboard_header");
}
?>
<div class="clearfix row">
<div class="col-md-12 widget-container">
<?php
echo announcements_alert_widget();
app_hooks()->do_action('app_hook_dashboard_announcement_extension');
?>
</div>
</div>
<?php
if ($widget_columns) {
echo $widget_columns;
} else {
echo view("dashboards/custom_dashboards/no_widgets");
}
$dashboard_id = isset($dashboard_id) ? $dashboard_id : 0;
?>
</div>
<?php echo view("dashboards/helper_js"); ?>
<script>
$(document).ready(function() {
//we have to reload the same page when editting title
$("#dashboard-edit-title-button").click(function() {
window.dashboardTitleEditMode = true;
});
//update dashboard link
$(".dashboard-menu, .dashboard-image").closest("a").attr("href", window.location.href);
onDashboardDeleteSuccess = function(result, $selector) {
window.location.href = "<?php echo get_uri("dashboard"); ?>";
};
if (!isMobile()) {
initScrollbar('#project-timeline-container', {
setHeight: 728
});
initScrollbar('#upcoming-event-container', {
setHeight: 330
});
initScrollbar('#client-projects-list', {
setHeight: 316
});
}
<?php if ($dashboard_id && $dashboard_id === get_setting("staff_default_dashboard") && $login_user->user_type === "staff") { ?>
$(".dashboards-row").each(function() { //each widgets row
var $rowInstance = $(this),
totalColumns = $rowInstance.find(".widget-container").length,
invalidWidgetRemoved = false;
//remove invalid widgets and columns
$rowInstance.find(".widget-container").each(function() { //each widgets column
var invalidWidget = $(this).find(".dashboard-invalid-widget");
if (invalidWidget) { //has invalid widget in this column
invalidWidget.remove(); //remove invalid widget
if ($(this).text() === '') { //if there is nothing else in this column the remove the column
$(this).remove();
invalidWidgetRemoved = true; //flag an invalid widget removed, to prevent extra operations
}
}
});
if (invalidWidgetRemoved) {
var totalNewColumns = $rowInstance.find(".widget-container").length,
columnsArray = {
1: 12,
2: 6,
3: 4,
4: 3
};
if (totalColumns !== totalNewColumns) { //any column has been totally removed in this row
$rowInstance.find(".widget-container").each(function() {
$(this).addClass("col-md-" + columnsArray[totalNewColumns]); //apply the appropriate column class
});
}
}
});
<?php } ?>
});
<?php if ($login_user->user_type === "client" && get_setting("client_can_access_store") && !get_setting('accept_order_before_login')) { ?>
if (getCookie("show_cart_after_login") == "1") {
setCookie("show_cart_after_login", "0");
window.location.href = "<?php echo get_uri("store/process_order"); ?>";
}
<?php } ?>
</script>