ILIAS  release_4-4 Revision
ilECSAuth Class Reference
+ Collaboration diagram for ilECSAuth:

Public Member Functions

 __construct ()
 constuctor More...
 
 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 49 of file class.ilECSAuth.php.

References $ilLog.

50  {
51  global $ilLog;
52 
53  $this->log = $ilLog;
54  }

Member Function Documentation

◆ getHash()

ilECSAuth::getHash ( )

get hash

public

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

91  {
92  return $this->hash;
93  }

◆ getRealm()

ilECSAuth::getRealm ( )

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

References $realm.

80  {
81  return $this->realm;
82  }

◆ getUrl()

ilECSAuth::getUrl ( )

get Url

Returns
<type>

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

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

◆ setEOV()

ilECSAuth::setEOV (   $a_eov)

set EOV

public

Parameters
inteov of verification

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

119  {
120  include_once('Date.php');
121 
122  $date = new Date();
123  $date->setDate($a_eov,DATE_FORMAT_UNIXTIME);
124  $this->eov = $date->getDate().'+01:00';
125  }

◆ setRealm()

ilECSAuth::setRealm (   $a_realm)

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

75  {
76  $this->realm = $a_realm;
77  }

◆ setSOV()

ilECSAuth::setSOV (   $a_sov)

set SOV

public

Parameters
intstart of verification

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

103  {
104  include_once('Date.php');
105 
106  $date = new Date();
107  $date->setDate($a_sov,DATE_FORMAT_UNIXTIME);
108  $this->sov = $date->getDate().'+01:00';
109  }

◆ setUrl()

ilECSAuth::setUrl (   $a_url)

URL.

Parameters
string$a_url

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

61  {
62  $this->url = $a_url;
63  }

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: