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/www/administrator/components/com_akeeba/views/profiles/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2016 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\Platform;
/**
* MVC View for Profiles management
*
*/
class AkeebaViewProfiles extends F0FViewHtml
{
function display($tpl = null)
{
// Load the util helper
$this->loadHelper('utils');
// Add a spacer, a help button and show the template
JToolbarHelper::spacer();
parent::display($tpl);
}
/**
* The default layout, shows a list of profiles
*
*/
function onBrowse($tpl = null)
{
// Get reference to profiles model
$model = $this->getModel();
// Get profile ID
$profileid = Platform::getInstance()->get_active_profile();
$this->profileid = $profileid;
// Get profile name
$model->setId($profileid);
$profile_data = $model->getProfile();
$this->profilename = $this->escape($profile_data->description);
// Get Sort By fields
$this->sortFields = array(
'id' => JText::_('JGRID_HEADING_ID'),
'description' => JText::_('COM_AKEEBA_PROFILES_COLLABEL_DESCRIPTION'),
);
return parent::onBrowse($tpl);
}
}