ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 $ilLog.

56  {
57  global $ilLog;
58 
59  $this->log = $ilLog;
60  }

Member Function Documentation

◆ getHash()

ilECSAuth::getHash ( )

get hash

public

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

107  {
108  return $this->hash;
109  }

◆ getPid()

ilECSAuth::getPid ( )

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

68  {
69  return $this->pid;
70  }

◆ getRealm()

ilECSAuth::getRealm ( )

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

References $realm.

96  {
97  return $this->realm;
98  }

◆ getUrl()

ilECSAuth::getUrl ( )

get Url

Returns
<type>

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

References $url.

86  {
87  return $this->url;
88  }
$url

◆ setEOV()

ilECSAuth::setEOV (   $a_eov)

set EOV

public

Parameters
inteov of verification

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

References IL_CAL_ISO_8601, and IL_CAL_UNIX.

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

◆ setPid()

ilECSAuth::setPid (   $a_pid)

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

63  {
64  $this->pid = $a_pid;
65  }

◆ setRealm()

ilECSAuth::setRealm (   $a_realm)

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

91  {
92  $this->realm = $a_realm;
93  }

◆ setSOV()

ilECSAuth::setSOV (   $a_sov)

set SOV

public

Parameters
intstart of verification

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

References IL_CAL_ISO_8601, and IL_CAL_UNIX.

119  {
120  include_once './Services/Calendar/classes/class.ilDateTime.php';
121  $dt = new ilDateTime($a_sov, IL_CAL_UNIX);
122  $this->sov = $dt->get(IL_CAL_ISO_8601);
123  }
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 76 of file class.ilECSAuth.php.

77  {
78  $this->url = $a_url;
79  }

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: