ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
+ Collaboration diagram for HTML output:

Functions

static phpCAS::setHTMLHeader ($header)
 This method sets the HTML header used for all outputs. More...
 
static phpCAS::setHTMLFooter ($footer)
 This method sets the HTML footer used for all outputs. More...
 

Detailed Description

Function Documentation

◆ setHTMLFooter()

static phpCAS::setHTMLFooter (   $footer)
static

This method sets the HTML footer used for all outputs.

Parameters
string$footerthe HTML footer.
Returns
void

Definition at line 753 of file CAS.php.

754 {
756
757 try {
758 self::$_PHPCAS_CLIENT->setHTMLFooter($footer);
759 } catch (Exception $e) {
760 phpCAS :: error(get_class($e) . ': ' . $e->getMessage());
761 }
762 }
static _validateClientExists()
Checks if a client already exists.
Definition: CAS.php:1810
static error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:543

References phpCAS\_validateClientExists(), and phpCAS\error().

+ Here is the call graph for this function:

◆ setHTMLHeader()

static phpCAS::setHTMLHeader (   $header)
static

This method sets the HTML header used for all outputs.

Parameters
string$headerthe HTML header.
Returns
void

Definition at line 735 of file CAS.php.

736 {
738
739 try {
740 self::$_PHPCAS_CLIENT->setHTMLHeader($header);
741 } catch (Exception $e) {
742 phpCAS :: error(get_class($e) . ': ' . $e->getMessage());
743 }
744 }

References $header, phpCAS\_validateClientExists(), and phpCAS\error().

+ Here is the call graph for this function: