| Server IP : 127.0.1.1 / Your IP : 216.73.216.129 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/bahcrestline/core/storage/framework/views/ |
Upload File : |
<?php
// Current Full URL
$fullPagePath = Request::url();
// Char Count of Backend folder Plus 1
$envAdminCharCount = strlen(env('BACKEND_PATH')) + 1;
// URL after Root Path EX: admin/home
$urlAfterRoot = substr($fullPagePath, strpos($fullPagePath, env('BACKEND_PATH')) + $envAdminCharCount);
?>
<div id="aside" class="app-aside modal fade folded md nav-expand">
<div class="left navside dark dk" layout="column">
<div class="navbar navbar-md no-radius">
<!-- brand -->
<a class="navbar-brand" href="<?php echo e(route('adminHome')); ?>">
<img src="<?php echo e(URL::to('backEnd/assets/images/logo.png')); ?>" alt="Control">
<span class="hidden-folded inline"><?php echo e(trans('backLang.control')); ?></span>
</a>
<!-- / brand -->
</div>
<div flex class="hide-scroll">
<nav class="scroll nav-active-primary">
<ul class="nav" ui-nav>
<li class="nav-header hidden-folded">
<small class="text-muted"><?php echo e(trans('backLang.main')); ?></small>
</li>
<li>
<a href="<?php echo e(route('adminHome')); ?>" onclick="location.href='<?php echo e(route('adminHome')); ?>'">
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.dashboard')); ?></span>
</a>
</li>
<?php if(Helper::GeneralWebmasterSettings("analytics_status")): ?>
<?php if(@Auth::user()->permissionsGroup->analytics_status): ?>
<?php
$currentFolder = "analytics"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
$currentFolder2 = "ip"; // Put folder name here
$PathCurrentFolder2 = substr($urlAfterRoot, 0, strlen($currentFolder2));
$currentFolder3 = "visitors"; // Put folder name here
$PathCurrentFolder3 = substr($urlAfterRoot, 0, strlen($currentFolder3));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder || $PathCurrentFolder2==$currentFolder2 || $PathCurrentFolder3==$currentFolder3) ? 'class=active' : ''); ?>>
<a>
<span class="nav-caret">
<i class="fa fa-caret-down"></i>
</span>
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.visitorsAnalytics')); ?></span>
</a>
<ul class="nav-sub">
<li>
<a onclick="location.href='<?php echo e(route('analytics', 'date')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsBydate')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/country"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'country')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByCountry')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/city"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'city')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByCity')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/os"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'os')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByOperatingSystem')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/browser"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'browser')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByBrowser')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/referrer"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'referrer')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByReachWay')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/hostname"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'hostname')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByHostName')); ?></span>
</a>
</li>
<?php
$currentFolder = "analytics/org"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('analytics', 'org')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsByOrganization')); ?></span>
</a>
</li>
<?php
$currentFolder = "visitors"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a onclick="location.href='<?php echo e(route('visitors')); ?>'">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsVisitorsHistory')); ?></span>
</a>
</li>
<?php
$currentFolder = "ip"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('visitorsIP')); ?>">
<span
class="nav-text"><?php echo e(trans('backLang.visitorsAnalyticsIPInquiry')); ?></span>
</a>
</li>
</ul>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if(Helper::GeneralWebmasterSettings("newsletter_status")): ?>
<?php if(@Auth::user()->permissionsGroup->newsletter_status): ?>
<?php
$currentFolder = "contacts"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('contacts')); ?>">
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.newsletter')); ?></span>
</a>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if(Helper::GeneralWebmasterSettings("inbox_status")): ?>
<?php if(@Auth::user()->permissionsGroup->inbox_status): ?>
<?php
$currentFolder = "webmails"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('webmails')); ?>">
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.siteInbox')); ?>
<?php if( Helper::webmailsNewCount() >0): ?>
<badge class="label warn m-l-xs"><?php echo e(Helper::webmailsNewCount()); ?></badge>
<?php endif; ?>
</span>
</a>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if(Helper::GeneralWebmasterSettings("calendar_status")): ?>
<?php if(@Auth::user()->permissionsGroup->calendar_status): ?>
<?php
$currentFolder = "calendar"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('calendar')); ?>" onclick="location.href='<?php echo e(route('calendar')); ?>'">
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.calendar')); ?></span>
</a>
</li>
<?php endif; ?>
<?php endif; ?>
<li class="nav-header hidden-folded">
<small class="text-muted"><?php echo e(trans('backLang.siteData')); ?></small>
</li>
<?php
$data_sections_arr = explode(",", Auth::user()->permissionsGroup->data_sections);
?>
<?php $__currentLoopData = $GeneralWebmasterSections; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $GeneralWebmasterSection): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if(in_array($GeneralWebmasterSection->id,$data_sections_arr)): ?>
<?php
$LiIcon = "";
if ($GeneralWebmasterSection->type == 3) {
$LiIcon = "";
}
if ($GeneralWebmasterSection->type == 2) {
$LiIcon = "";
}
if ($GeneralWebmasterSection->type == 1) {
$LiIcon = "";
}
if ($GeneralWebmasterSection->type == 0) {
$LiIcon = "";
}
if ($GeneralWebmasterSection->name == "sitePages") {
$LiIcon = "";
}
if ($GeneralWebmasterSection->name == "articles") {
$LiIcon = "";
}
if ($GeneralWebmasterSection->name == "services") {
$LiIcon = "";
}
if ($GeneralWebmasterSection->name == "news") {
$LiIcon = "";
}
if ($GeneralWebmasterSection->name == "products") {
$LiIcon = "";
}
// get 9 char after root url to check if is "webmaster"
$is_webmaster = substr($urlAfterRoot, 0, 9);
?>
<?php if($GeneralWebmasterSection->sections_status > 0 && @Auth::user()->permissionsGroup->view_status == 0): ?>
<li <?php echo e(($GeneralWebmasterSection->id == @$WebmasterSection->id && $is_webmaster != "webmaster") ? 'class=active' : ''); ?>>
<a>
<span class="nav-caret">
<i class="fa fa-caret-down"></i>
</span>
<span class="nav-icon">
<i class="material-icons"><?php echo $LiIcon; ?></i>
</span>
<span
class="nav-text"><?php echo str_replace("backLang.","",trans('backLang.'.$GeneralWebmasterSection->name)); ?></span>
</a>
<ul class="nav-sub">
<?php if($GeneralWebmasterSection->sections_status > 0): ?>
<?php
$currentFolder = "sections"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot,
(strlen($GeneralWebmasterSection->id) + 1), strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?> >
<a href="<?php echo e(route('sections',$GeneralWebmasterSection->id)); ?>">
<span
class="nav-text"><?php echo e(trans('backLang.sectionsOf')); ?> <?php echo e(str_replace("backLang.","",trans('backLang.'.$GeneralWebmasterSection->name))); ?></span>
</a>
</li>
<?php endif; ?>
<?php
$currentFolder = "topics"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot,
(strlen($GeneralWebmasterSection->id) + 1), strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?> >
<a href="<?php echo e(route('topics',$GeneralWebmasterSection->id)); ?>">
<span
class="nav-text"><?php echo str_replace("backLang.","",trans('backLang.'.$GeneralWebmasterSection->name)); ?></span>
</a>
</li>
</ul>
</li>
<?php else: ?>
<li <?php echo e(($GeneralWebmasterSection->id== @$WebmasterSection->id) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('topics',$GeneralWebmasterSection->id)); ?>">
<span class="nav-icon">
<i class="material-icons"><?php echo $LiIcon; ?></i>
</span>
<span
class="nav-text"><?php echo str_replace("backLang.","",trans('backLang.'.$GeneralWebmasterSection->name)); ?></span>
</a>
</li>
<?php endif; ?>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php if(Helper::GeneralWebmasterSettings("banners_status")): ?>
<?php if(@Auth::user()->permissionsGroup->banners_status): ?>
<?php
$currentFolder = "banners"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?> >
<a href="<?php echo e(route('Banners')); ?>">
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.adsBanners')); ?></span>
</a>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if(Helper::GeneralWebmasterSettings("settings_status")): ?>
<?php if(@Auth::user()->permissionsGroup->settings_status): ?>
<li class="nav-header hidden-folded">
<small class="text-muted"><?php echo e(trans('backLang.settings')); ?></small>
</li>
<?php
$currentFolder = "settings"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
$currentFolder2 = "menus"; // Put folder name here
$PathCurrentFolder2 = substr($urlAfterRoot, 0, strlen($currentFolder2));
$currentFolder3 = "users"; // Put folder name here
$PathCurrentFolder3 = substr($urlAfterRoot, 0, strlen($currentFolder2));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder || $PathCurrentFolder2==$currentFolder2 || $PathCurrentFolder3==$currentFolder3 ) ? 'class=active' : ''); ?>>
<a>
<span class="nav-caret">
<i class="fa fa-caret-down"></i>
</span>
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.generalSiteSettings')); ?></span>
</a>
<ul class="nav-sub">
<?php
$currentFolder = "settings"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('settings')); ?>"
onclick="location.href='<?php echo e(route('settings')); ?>'">
<span class="nav-text"><?php echo e(trans('backLang.generalSettings')); ?></span>
</a>
</li>
<?php
$currentFolder = "menus"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('menus')); ?>">
<span class="nav-text"><?php echo e(trans('backLang.siteMenus')); ?></span>
</a>
</li>
<?php
$currentFolder = "users"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('users')); ?>">
<span class="nav-text"><?php echo e(trans('backLang.usersPermissions')); ?></span>
</a>
</li>
</ul>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if(@Auth::user()->permissionsGroup->webmaster_status): ?>
<?php
$currentFolder = "webmaster"; // Put folder name here
$PathCurrentFolder = substr($urlAfterRoot, 0, strlen($currentFolder));
?>
<li <?php echo e(($PathCurrentFolder==$currentFolder) ? 'class=active' : ''); ?>>
<a>
<span class="nav-caret">
<i class="fa fa-caret-down"></i>
</span>
<span class="nav-icon">
<i class="material-icons"></i>
</span>
<span class="nav-text"><?php echo e(trans('backLang.webmasterTools')); ?></span>
</a>
<ul class="nav-sub">
<?php
$PathCurrentSubFolder = substr($urlAfterRoot, 0, (strlen($currentFolder) + 1));
?>
<li <?php echo e(($PathCurrentFolder==$PathCurrentSubFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('webmasterSettings')); ?>"
onclick="location.href='<?php echo e(route('webmasterSettings')); ?>'">
<span class="nav-text"><?php echo e(trans('backLang.generalSettings')); ?></span>
</a>
</li>
<?php
$currentSubFolder = "sections"; // Put folder name here
$PathCurrentSubFolder = substr($urlAfterRoot, (strlen($currentFolder) + 1),
strlen($currentSubFolder));
?>
<li <?php echo e(($PathCurrentSubFolder==$currentSubFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('WebmasterSections')); ?>">
<span class="nav-text"><?php echo e(trans('backLang.siteSectionsSettings')); ?></span>
</a>
</li>
<?php
$currentSubFolder = "banners"; // Put folder name here
$PathCurrentSubFolder = substr($urlAfterRoot, (strlen($currentFolder) + 1),
strlen($currentSubFolder));
?>
<li <?php echo e(($PathCurrentSubFolder==$currentSubFolder) ? 'class=active' : ''); ?>>
<a href="<?php echo e(route('WebmasterBanners')); ?>">
<span class="nav-text"><?php echo e(trans('backLang.adsBannersSettings')); ?></span>
</a>
</li>
</ul>
</li>
<?php endif; ?>
</ul>
</nav>
</div>
</div>
</div>
<?php /**PATH /var/www/bahcrestline/core/resources/views/backEnd/includes/menu.blade.php ENDPATH**/ ?>