ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
+ 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.

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

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 error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:543
static _validateClientExists()
Checks if a client already exists.
Definition: CAS.php:1810
+ 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.

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

736  {
738 
739  try {
740  self::$_PHPCAS_CLIENT->setHTMLHeader($header);
741  } catch (Exception $e) {
742  phpCAS :: error(get_class($e) . ': ' . $e->getMessage());
743  }
744  }
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
$header
static _validateClientExists()
Checks if a client already exists.
Definition: CAS.php:1810
+ Here is the call graph for this function: