| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.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 : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/old/administrator/components/com_akeeba/View/Schedule/ |
Upload File : |
<?php
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Akeeba\Backup\Admin\View\Schedule;
// Protect from unauthorized access
defined('_JEXEC') or die();
use Akeeba\Backup\Admin\Model\Profiles;
use Akeeba\Backup\Admin\Model\Schedule;
use Akeeba\Backup\Admin\View\ViewTraits\ProfileIdAndName;
use Akeeba\Engine\Platform;
use FOF30\View\DataView\Html as BaseView;
/**
* View controller for the Scheduling Information page
*/
class Html extends BaseView
{
use ProfileIdAndName;
/**
* CRON information
*
* @var object
*/
public $croninfo = null;
/**
* Check for failed backups information
*
* @var object
*/
public $checkinfo = null;
protected function onBeforeMain()
{
$this->getProfileIdAndName();
// Get the CRON paths
/** @var Schedule $model */
$model = $this->getModel();
$this->croninfo = $model->getPaths();
$this->checkinfo = $model->getCheckPaths();
\JHtml::_('bootstrap.framework');
}
}