mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-22 01:58:47 +02:00
N°2311 - combodo-cas renamed authent-cas
This commit is contained in:
@@ -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>.
|
||||
|
||||
@@ -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(
|
||||
@@ -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);
|
||||
Reference in New Issue
Block a user