ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilECSAuth Class Reference
+ Collaboration diagram for ilECSAuth:

Public Member Functions

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

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

ilECSAuth::__construct ( )

constuctor

public

Parameters

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

References $ilLog.

{
global $ilLog;
$this->log = $ilLog;
}

Member Function Documentation

ilECSAuth::getHash ( )

get hash

public

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

{
return $this->hash;
}
ilECSAuth::getRealm ( )

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

References $realm.

{
return $this->realm;
}
ilECSAuth::getUrl ( )

get Url

Returns
<type>

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

{
return $this->url;
}
ilECSAuth::setEOV (   $a_eov)

set EOV

public

Parameters
inteov of verification

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

{
include_once('Date.php');
$date = new Date();
$date->setDate($a_eov,DATE_FORMAT_UNIXTIME);
$this->eov = $date->getDate().'+01:00';
}
ilECSAuth::setRealm (   $a_realm)

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

{
$this->realm = $a_realm;
}
ilECSAuth::setSOV (   $a_sov)

set SOV

public

Parameters
intstart of verification

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

{
include_once('Date.php');
$date = new Date();
$date->setDate($a_sov,DATE_FORMAT_UNIXTIME);
$this->sov = $date->getDate().'+01:00';
}
ilECSAuth::setUrl (   $a_url)

URL.

Parameters
string$a_url

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

{
$this->url = $a_url;
}

Field Documentation

ilECSAuth::$log
protected

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

ilECSAuth::$mids = array()
protected

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

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: