N°2311 - combodo-cas renamed authent-cas

This commit is contained in:
Eric
2019-08-21 12:21:24 +02:00
parent 6693ec48a0
commit 97e58c2d79
72 changed files with 6 additions and 6 deletions

View File

@@ -48,9 +48,9 @@ To do so, set or change the following parameters in the iTop configuration file:
'cas_version' => 'S1',
```
## combodo-cas extension
## authent-cas extension
This extension is a quick port of the previous implementation of the the CAS SSO into iTop. For backward compatibility it retains the same parameters (which are part of the global config and not part of the *combodo-cas module* configuration).
This extension is a quick port of the previous implementation of the the CAS SSO into iTop. For backward compatibility it retains the same parameters (which are part of the global config and not part of the *authent-cas module* configuration).
The library used is still **phpCAS** (now under the Apereo umbrella and more or less maintained...) <https://github.com/apereo/phpCAS>.

View File

@@ -5,7 +5,7 @@
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'combodo-cas/1.0.0',
'authent-cas/2.7.0',
array(
// Identification
//
@@ -17,13 +17,13 @@ SetupWebPage::AddModule(
'dependencies' => array(
),
'mandatory' => false,
'mandatory' => true,
'visible' => true,
// Components
//
'datamodel' => array(
'model.combodo-cas.php',
'model.authent-cas.php',
'main.php'
),
'webservice' => array(

View File

@@ -22,7 +22,7 @@ class Config
*/
public static function Get($sName)
{
$sValue = MetaModel::GetModuleSetting('combodo-cas', $sName, '');
$sValue = MetaModel::GetModuleSetting('authent-cas', $sName, '');
if (empty($sValue))
{
$sValue = MetaModel::GetConfig()->Get($sName);