Размер файла: 3.62Kb
<?php
/**
* This file is part of JohnCMS Content Management System.
*
* @copyright JohnCMS Community
* @license https://opensource.org/licenses/GPL-3.0 GPL-3.0
* @link https://johncms.com JohnCMS Project
*/
/**
* @var $title
* @var $page_title
* @var $data
*/
$this->layout(
'system::layout/default',
[
'title' => $title,
'page_title' => $page_title,
]
);
$this->sectionReplace('sidebar-menu', $this->fetch('admin::sidebar-admin-menu', ['module_menu' => ['ads' => true]]));
?>
<?php if (! empty($data['filters'])): ?>
<div class="mb-3">
<?php foreach ($data['filters'] as $filter): ?>
<a href="<?= $filter['url'] ?>" class="btn btn-outline-secondary mt-1 <?= ($filter['active'] ? 'active' : '') ?>"><?= $filter['name'] ?></a>
<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if (! empty($data['items'])): ?>
<?php foreach ($data['items'] as $item): ?>
<div class="new_post-item without_avatar">
<div class="d-flex justify-content-between align-items-center">
<a href="<?= $item['link'] ?>" class="h3" target="_blank"><?= $item['name'] ?></a>
<div>
<?php if (! $item['to']): ?>
<a href="?mod=show&id=<?= $item['id'] ?>" class="badge badge-pill badge-success"><?= __('On') ?></a>
<?php else: ?>
<a href="?mod=show&id=<?= $item['id'] ?>" class="badge badge-pill badge-danger"><?= __('Off') ?></a>
<?php endif; ?>
</div>
</div>
<div class="post-body small">
<div><?= __('Start date') ?>: <?= $item['display_time'] ?></div>
<div><?= __('Disposition') ?>: <?= $item['place'] ?></div>
<div><?= __('Show') ?>: <?= $item['show_for'] ?></div>
<div><?= __('Agreement') ?>: <?= $item['agreement'] ?></div>
<div><?= __('Remains') ?>: <?= $item['remains'] ?></div>
<div><?= __('Link type') ?>: <?= $item['show'] ? __('Direct Link') : __('Redirect') ?></div>
<div><?= __('Style settings') ?>: <?= ! empty($item['styles']) ? $item['styles'] : __('Default') ?></div>
</div>
<div>
<a href="?mod=up&id=<?= $item['id'] ?>" class="mr-2"><?= __('Up') ?></a>
<a href="?mod=down&id=<?= $item['id'] ?>" class="mr-2"><?= __('Down') ?></a>
<a href="?mod=edit&id=<?= $item['id'] ?>" class="mr-2"><?= __('Edit') ?></a>
<a href="?mod=del&id=<?= $item['id'] ?>" class="text-danger mr-2"><?= __('Delete') ?></a>
<a href="?mod=show&id=<?= $item['id'] ?>" class="text-danger"><?= ($item['to'] ? __('Show') : __('Hide')) ?></a>
</div>
</div>
<?php endforeach; ?>
<?php else: ?>
<?= $this->fetch(
'system::app/alert',
[
'alert_type' => 'alert-info',
'alert' => __('The list is empty'),
]
) ?>
<?php endif; ?>
<div class="mt-4">
<?php if ($data['total'] > $user->config->kmess): ?>
<div>
<?= $data['pagination'] ?>
</div>
<?php endif; ?>
<?php if ($data['total'] > 0): ?>
<div><?= __('Total:') ?> <?= $data['total'] ?></div>
<?php endif; ?>
</div>
<div>
<div class="mb-3">
<a href="?mod=edit" class="btn btn-primary btn-sm"><?= __('Add link') ?></a>
<a href="?mod=clear" class="btn btn-danger btn-sm"><?= __('Delete inactive links') ?></a>
</div>
<div>
<a href="<?= $data['back_url'] ?>"><?= __('Back') ?></a>
</div>
</div>