Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/zenit/administrator/components/com_akeebabackup/tmpl/controlpanel/ |
Upload File : |
<?php
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2021 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
/** @var $this \Akeeba\Component\AkeebaBackup\Administrator\View\Controlpanel\HtmlView */
// Protect from unauthorized access
defined('_JEXEC') || die();
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
?>
<div class="card mb-2">
<h3 class="card-header bg-primary text-white">
<?= Text::_('COM_AKEEBABACKUP_CPANEL_HEADER_QUICKBACKUP') ?>
</h3>
<div class="card-body">
<div class="d-flex flex-row flex-wrap align-items-stretch">
<?php foreach($this->quickIconProfiles as $qiProfile): ?>
<a class="text-center btn btn-outline-success border-0" style="width: 10em"
href="index.php?option=com_akeebabackup&view=Backup&autostart=1&profileid=<?= (int) $qiProfile->id ?>&<?= Factory::getApplication()->getFormToken() ?>=1">
<div class="bg-success text-white d-block text-center p-3 h2">
<span class="fa fa-play"></span>
</div>
<span><?= $this->escape($qiProfile->description) ?></span>
</a>
<?php endforeach ?>
</div>
</div>
</div>