ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilECSAuth Class Reference
+ Collaboration diagram for ilECSAuth:

Public Member Functions

 __construct ()
 constuctor More...
 
 setPid ($a_pid)
 
 getPid ()
 
 setUrl ($a_url)
 URL. More...
 
 getUrl ()
 get Url More...
 
 setRealm ($a_realm)
 
 getRealm ()
 
 getHash ()
 get hash More...
 
 setSOV ($a_sov)
 set SOV More...
 
 setEOV ($a_eov)
 set EOV More...
 

Data Fields

 $realm
 

Protected Attributes

 $log
 
 $mids = array()
 

Detailed Description

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 33 of file class.ilECSAuth.php.

Constructor & Destructor Documentation

◆ __construct()

ilECSAuth::__construct ( )

constuctor

public

Parameters

Definition at line 55 of file class.ilECSAuth.php.

References $DIC, and $ilLog.

56  {
57  global $DIC;
58 
59  $ilLog = $DIC['ilLog'];
60 
61  $this->log = $ilLog;
62  }
global $DIC
Definition: saml.php:7

Member Function Documentation

◆ getHash()

ilECSAuth::getHash ( )

get hash

public

Definition at line 108 of file class.ilECSAuth.php.

109  {
110  return $this->hash;
111  }

◆ getPid()

ilECSAuth::getPid ( )

Definition at line 69 of file class.ilECSAuth.php.

70  {
71  return $this->pid;
72  }

◆ getRealm()

ilECSAuth::getRealm ( )

Definition at line 97 of file class.ilECSAuth.php.

References $realm.

98  {
99  return $this->realm;
100  }

◆ getUrl()

ilECSAuth::getUrl ( )

get Url

Returns
<type>

Definition at line 87 of file class.ilECSAuth.php.

References $url.

88  {
89  return $this->url;
90  }
$url

◆ setEOV()

ilECSAuth::setEOV (   $a_eov)

set EOV

public

Parameters
inteov of verification

Definition at line 134 of file class.ilECSAuth.php.

References IL_CAL_ISO_8601, and IL_CAL_UNIX.

135  {
136  include_once './Services/Calendar/classes/class.ilDateTime.php';
137  $dt = new ilDateTime($a_eov, IL_CAL_UNIX);
138  $this->sov = $dt->get(IL_CAL_ISO_8601);
139  }
const IL_CAL_UNIX
const IL_CAL_ISO_8601
Date and time handling

◆ setPid()

ilECSAuth::setPid (   $a_pid)

Definition at line 64 of file class.ilECSAuth.php.

65  {
66  $this->pid = $a_pid;
67  }

◆ setRealm()

ilECSAuth::setRealm (   $a_realm)

Definition at line 92 of file class.ilECSAuth.php.

93  {
94  $this->realm = $a_realm;
95  }

◆ setSOV()

ilECSAuth::setSOV (   $a_sov)

set SOV

public

Parameters
intstart of verification

Definition at line 120 of file class.ilECSAuth.php.

References IL_CAL_ISO_8601, and IL_CAL_UNIX.

121  {
122  include_once './Services/Calendar/classes/class.ilDateTime.php';
123  $dt = new ilDateTime($a_sov, IL_CAL_UNIX);
124  $this->sov = $dt->get(IL_CAL_ISO_8601);
125  }
const IL_CAL_UNIX
const IL_CAL_ISO_8601
Date and time handling

◆ setUrl()

ilECSAuth::setUrl (   $a_url)

URL.

Parameters
string$a_url

Definition at line 78 of file class.ilECSAuth.php.

79  {
80  $this->url = $a_url;
81  }

Field Documentation

◆ $log

ilECSAuth::$log
protected

Definition at line 35 of file class.ilECSAuth.php.

◆ $mids

ilECSAuth::$mids = array()
protected

Definition at line 36 of file class.ilECSAuth.php.

◆ $realm

ilECSAuth::$realm

Definition at line 39 of file class.ilECSAuth.php.

Referenced by getRealm().


The documentation for this class was generated from the following file: