Current Directory: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/cpanel
Viewing File: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/cpanel/view.html.php
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @since 1.3
*/
// Protect from unauthorized access
defined('_JEXEC') or die();
use Akeeba\Engine\Factory;
use Akeeba\Engine\Platform;
/**
* Akeeba Backup Control Panel view class
*
*/
class AkeebaViewCpanel extends F0FViewHtml
{
protected function onBrowse($tpl = null) {
// Used in F0F 2.0, where this actually works as expected
$this->onAdd($tpl);
}
protected function onAdd($tpl = null)
{
/** @var AkeebaModelCpanels $model */
$model = $this->getModel();
/**
$selfhealModel = F0FModel::getTmpInstance('Selfheal','AkeebaModel');
$schemaok = $selfhealModel->healSchema();
/**/
$schemaok = true;
$this->schemaok = $schemaok;
$aeconfig = Factory::getConfiguration();
if($schemaok) {
// Load the helper classes
$this->loadHelper('utils');
$this->loadHelper('status');
$statusHelper = AkeebaHelperStatus::getInstance();
// Load the model
if(!class_exists('AkeebaModelStatistics')) JLoader::import('models.statistics', JPATH_COMPONENT_ADMINISTRATOR);
$statmodel = new AkeebaModelStatistics();
$this->icondefs = $model->getIconDefinitions(); // Icon definitions
$this->profileid = $model->getProfileID(); // Active profile ID
$this->profilelist = $model->getProfilesList(); // List of available profiles
$this->statuscell = $statusHelper->getStatusCell(); // Backup status
$this->detailscell = $statusHelper->getQuirksCell(); // Details (warnings)
$this->statscell = $statmodel->getLatestBackupDetails();
$this->fixedpermissions = $model->fixMediaPermissions(); // Fix media/com_akeeba permissions
$this->update_plugin = $model->isUpdatePluginEnabled();
$this->needsdlid = $model->needsDownloadID();
$this->needscoredlidwarning = $model->mustWarnAboutDownloadIDInCore();
$this->hasPostInstallationMessages = $model->hasPostInstallMessages();
$this->extension_id = $model->getState('extension_id', 0, 'int');
// Add live help
AkeebaHelperIncludes::addHelp('cpanel');
$this->statsIframe = F0FModel::getTmpInstance('Stats', 'AkeebaModel')->collectStatistics(true);
}
return $this->onDisplay($tpl);
}
}