mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
29 lines
536 B
PHP
29 lines
536 B
PHP
|
<?php
|
||
|
|
||
|
namespace SuiteCRM\Core\Modules\Administration;
|
||
|
|
||
|
use SuiteCRM\Core\Module\ModuleInterface;
|
||
|
|
||
|
/**
|
||
|
* Class Administration
|
||
|
* @package SuiteCRM\Core\Modules\Administration
|
||
|
*/
|
||
|
class Administration implements ModuleInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName(): string
|
||
|
{
|
||
|
return 'Administration Module';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getDescription(): string
|
||
|
{
|
||
|
return 'This module will allow administrators to configure the system';
|
||
|
}
|
||
|
}
|