Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
88 lines
4.9 KiB
PHP
88 lines
4.9 KiB
PHP
<div class="report-widget">
|
|
<h3><?= e(trans($this->property('title'))) ?></h3>
|
|
|
|
<?php if (!isset($error)): ?>
|
|
<div class="control-status-list">
|
|
<ul>
|
|
<li>
|
|
<?php if ($updates): ?>
|
|
<span class="status-icon warning"><i class="icon-exclamation"></i></span>
|
|
<span class="status-text warning">
|
|
<?= e(trans('backend::lang.dashboard.status.updates_pending')) ?>
|
|
</span>
|
|
<?php if ($canUpdate): ?>
|
|
<a href="<?= Backend::url('system/updates') ?>" class="status-label link"><?= e(trans('backend::lang.dashboard.status.updates_link')) ?></a>
|
|
<?php endif ?>
|
|
<?php else: ?>
|
|
<span class="status-icon success"><i class="icon-check"></i></span>
|
|
<span class="status-text success">
|
|
<?= e(trans('backend::lang.dashboard.status.updates_nil')) ?>
|
|
</span>
|
|
<?php endif ?>
|
|
</li>
|
|
<li>
|
|
<?php if ($warnings): ?>
|
|
<span class="status-icon warning"><i class="icon-exclamation"></i></span>
|
|
<span class="status-text warning">
|
|
<?= e(trans('backend::lang.dashboard.status.warnings_pending')) ?>
|
|
</span>
|
|
<a
|
|
href="javascript:;"
|
|
data-control="popup"
|
|
data-size="large"
|
|
data-handler="<?= $this->getEventHandler('onLoadWarningsForm') ?>"
|
|
class="status-label link"><?= e(trans('backend::lang.dashboard.status.warnings_link')) ?></a>
|
|
<?php else: ?>
|
|
<span class="status-icon success"><i class="icon-check"></i></span>
|
|
<span class="status-text success">
|
|
<?= e(trans('backend::lang.dashboard.status.warnings_nil')) ?>
|
|
</span>
|
|
<?php endif ?>
|
|
</li>
|
|
<?php if ($coreBuild): ?>
|
|
<li>
|
|
<span class="status-icon"><i class="icon-info"></i></span>
|
|
<span class="status-text">
|
|
<?= e(trans('backend::lang.dashboard.status.core_build')) ?>
|
|
</span>
|
|
<a href="<?= Backend::url('system/updates') ?>" class="status-label primary"><?= $coreBuild ?></a>
|
|
</li>
|
|
<?php endif ?>
|
|
<li>
|
|
<span class="status-icon"><i class="icon-exclamation-triangle"></i></span>
|
|
<span class="status-text">
|
|
<?= e(trans('backend::lang.dashboard.status.event_log')) ?>
|
|
<?php if ($eventLogMsg): ?>
|
|
<a href="<?= Backend::url('system/settings/update/winter/system/log_settings') ?>"><i class="icon-exclamation-triangle text-warning" title="<?= e(trans('system::lang.updates.disabled')) ?>" data-toggle="tooltip" data-placement="right"></i></a>
|
|
<?php endif ?>
|
|
</span>
|
|
<a href="<?= Backend::url('system/eventlogs') ?>" class="status-label primary"><?= $eventLog ?></a>
|
|
</li>
|
|
<li>
|
|
<span class="status-icon"><i class="icon-file-o"></i></span>
|
|
<span class="status-text">
|
|
<?= e(trans('backend::lang.dashboard.status.request_log')) ?>
|
|
<?php if ($requestLogMsg): ?>
|
|
<a href="<?= Backend::url('system/settings/update/winter/system/log_settings') ?>"><i class="icon-exclamation-triangle text-warning" title="<?= e(trans('system::lang.updates.disabled')) ?>" data-toggle="tooltip" data-placement="right"></i></a>
|
|
<?php endif ?>
|
|
</span>
|
|
<a href="<?= Backend::url('system/requestlogs') ?>" class="status-label primary"><?= $requestLog ?></a>
|
|
</li>
|
|
<?php if ($appBirthday): ?>
|
|
<li>
|
|
<span class="status-icon"><i class="icon-calendar"></i></span>
|
|
<span class="status-text">
|
|
<?= e(trans('backend::lang.dashboard.status.app_birthday')) ?>
|
|
</span>
|
|
<span class="status-label link"><?= Backend::dateTime($appBirthday, ['formatAlias' => 'dateLong']) ?></span>
|
|
</li>
|
|
<?php endif ?>
|
|
</ul>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="callout callout-warning">
|
|
<div class="content"><?= e($error) ?></div>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|