File: /home/altinkayamarble/www/wp-content/plugins/akeebabackupwp/app/Solo/Application/UserPrivileges.php
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\Application;
use Awf\User\Privilege;
class UserPrivileges extends Privilege
{
public function __construct()
{
$this->name = 'akeeba';
// Set up the privilege names and their default values
$this->privileges = array(
'backup' => false,
'configure' => false,
'download' => false,
);
}
}