25 lines
494 B
PHP
25 lines
494 B
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,
|
|
);
|
|
}
|
|
}
|