36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* @package solo
|
|
* @copyright Copyright (c)2014-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU General Public License version 3, or later
|
|
*/
|
|
|
|
use Awf\Html;
|
|
use Awf\Text\Text;
|
|
|
|
defined('_AKEEBA') or die();
|
|
|
|
// Used for type hinting
|
|
/** @var \Solo\View\Main\Html $this */
|
|
|
|
$router = $this->container->router;
|
|
$token = $this->container->session->getCsrfToken()->getValue();
|
|
|
|
?>
|
|
<section class="akeeba-panel--primary">
|
|
<header class="akeeba-block-header">
|
|
<h3>
|
|
<span class="akion-ios-play"></span>
|
|
@lang('COM_AKEEBA_CPANEL_HEADER_QUICKBACKUP')
|
|
</h3>
|
|
</header>
|
|
<div class="akeeba-grid">
|
|
@foreach($this->quickIconProfiles as $qiProfile)
|
|
<a class="akeeba-action--green" href="{{ $router->route('index.php?view=backup&autostart=1&profile=' . (int) $qiProfile->id) . '&' . $token . '=1' }}">
|
|
<span class="akion-play"></span>
|
|
<span>{{ $qiProfile->description }} </span>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
</section>
|