PHP Classes

File: modules/cms/reportwidgets/activetheme/partials/_widget.php

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/cms/reportwidgets/activetheme/partials/_widget.php   Download  
File: modules/cms/reportwidgets/activetheme/partials/_widget.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 1,909 bytes
 

Contents

Class file image Download
<div class="report-widget widget-activetheme">
    <h3><?= e(trans($this->property('title'))) ?></h3>

    <?php if (!isset($error)): ?>
<div class="theme-thumbnail">
            <img src="<?= $theme->getPreviewImageUrl() ?>" alt="" class="img-responsive" />
        </div>
        <ul class="list-inline">
            <li>
            <?php if ($canManage): ?>
<a href="<?= Backend::url('system/settings/update/winter/cms/maintenance_settings') ?>">
            <?php endif ?>
<?php if ($inMaintenance): ?>
<i class="icon-circle warning"></i>
                    <span class="text-warning">
                        <?= e(trans('cms::lang.dashboard.active_theme.maintenance')) ?>
</span>
                <?php else: ?>
<i class="icon-circle success"></i>
                    <span class="text-success">
                        <?= e(trans('cms::lang.dashboard.active_theme.online')) ?>
</span>
                <?php endif ?>
<?php if ($canManage): ?>
</a>
            <?php endif ?>
</li>
        <?php if ($canManage): ?>
<li>
                <a href="<?= Backend::url('cms/themes') ?>">
                    <?= e(trans('cms::lang.dashboard.active_theme.manage_themes')) ?>
</a>
            </li>
        <?php endif ?>
<?php if ($canConfig && $theme->hasCustomData()): ?>
<li>
                <a href="<?= Backend::url('cms/themeoptions/update/'.$theme->getDirName()) ?>">
                    <?= e(trans('cms::lang.dashboard.active_theme.customize_theme')) ?>
</a>
            </li>
        <?php endif ?>
</ul>
    <?php else: ?>
<div class="callout callout-warning">
            <div class="content"><?= e($error) ?></div>
        </div>
    <?php endif ?>
</div>