ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f87
+ Collaboration diagram for HTML output:

Functions

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

Detailed Description

Function Documentation

◆ setHTMLFooter()

phpCAS::setHTMLFooter (   $footer)

This method sets the HTML footer used for all outputs.

Parameters
$footerthe HTML footer.

Definition at line 703 of file CAS.php.

References $PHPCAS_CLIENT, and phpCAS\error().

703  {
704  global $PHPCAS_CLIENT;
705  if (!is_object($PHPCAS_CLIENT)) {
706  phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');
707  }
708  if (gettype($footer) != 'string') {
709  phpCAS :: error('type mismatched for parameter $footer (should be `string\')');
710  }
711  $PHPCAS_CLIENT->setHTMLFooter($footer);
712  }
$PHPCAS_CLIENT
This global variable is used by the interface class phpCAS.
Definition: CAS.php:176
error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:544
+ Here is the call graph for this function:

◆ setHTMLHeader()

phpCAS::setHTMLHeader (   $header)

This method sets the HTML header used for all outputs.

Parameters
$headerthe HTML header.

Definition at line 687 of file CAS.php.

References $PHPCAS_CLIENT, and phpCAS\error().

687  {
688  global $PHPCAS_CLIENT;
689  if (!is_object($PHPCAS_CLIENT)) {
690  phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');
691  }
692  if (gettype($header) != 'string') {
693  phpCAS :: error('type mismatched for parameter $header (should be `string\')');
694  }
695  $PHPCAS_CLIENT->setHTMLHeader($header);
696  }
$PHPCAS_CLIENT
This global variable is used by the interface class phpCAS.
Definition: CAS.php:176
error($msg)
This method is used by interface methods to print an error and where the function was originally call...
Definition: CAS.php:544
+ Here is the call graph for this function: