SuiteCRM-Core/core/modules/Users/Users.php

25 lines
433 B
PHP
Raw Normal View History

2021-03-30 19:12:01 +01:00
<?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';
}
}