%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/auth-keycloak/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/auth-keycloak/Module.php |
<?php
/**
* Keycloak Sign-In
* @link https://github.com/cuzy-app/humhub-modules-auth-keycloak
* @license https://github.com/cuzy-app/humhub-modules-auth-keycloak/blob/master/docs/LICENCE.md
* @author [Marc FARRE](https://marc.fun) for [CUZY.APP](https://www.cuzy.app)
*/
namespace humhub\modules\authKeycloak;
use humhub\components\Module as BaseModule;
use yii\helpers\Url;
class Module extends BaseModule
{
/**
* @var string defines the icon
*/
public $icon = 'sign-in';
/**
* @var string defines path for resources, including the screenshots path for the marketplace
*/
public $resourcesPath = 'resources';
/**
* @var bool When connecting to Keycloak API, check if SSL certificate is valid
*/
public $apiVerifySsl = true;
/**
* @inheritdoc
*/
public function getConfigUrl()
{
return Url::to(['/auth-keycloak/admin']);
}
public function getName()
{
return 'Keycloak Sign-In';
}
public function getDescription()
{
return 'Integrating Keycloak Sign-In (OAuth 2.0)';
}
}