mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
SuiteCRM 8 initial commit
This commit is contained in:
commit
c895877b7e
547 changed files with 40449 additions and 0 deletions
28
core/modules/Administration/Administration.php
Normal file
28
core/modules/Administration/Administration.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?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';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue