ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
+ 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 773 of file CAS.php.

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

774  {
776 
777  try {
778  self::$_PHPCAS_CLIENT->setHTMLFooter($footer);
779  } catch (Exception $e) {
780  phpCAS :: error(get_class($e) . ': ' . $e->getMessage());
781  }
782  }
static error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:563
static _validateClientExists()
Checks if a client already exists.
Definition: CAS.php:1834
+ 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 755 of file CAS.php.

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

756  {
758 
759  try {
760  self::$_PHPCAS_CLIENT->setHTMLHeader($header);
761  } catch (Exception $e) {
762  phpCAS :: error(get_class($e) . ': ' . $e->getMessage());
763  }
764  }
static error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:563
static _validateClientExists()
Checks if a client already exists.
Definition: CAS.php:1834
+ Here is the call graph for this function: