mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 11:00:40 +08:00
24 lines
433 B
PHP
24 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';
|
|
}
|
|
}
|