mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 17:46:02 +08:00
25 lines
433 B
PHP
25 lines
433 B
PHP
|
<?php
|
||
|
|
||
|
namespace SuiteCRM\Core\Modules\Users;
|
||
|
|
||
|
use SuiteCRM\Core\Base\Module\ModuleInterface;
|
||
|
|
||
|
class Users implements ModuleInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed|string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'Users Module';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed|string
|
||
|
*/
|
||
|
public function getDescription()
|
||
|
{
|
||
|
return 'This module will allow the user to configurate their user account';
|
||
|
}
|
||
|
}
|