ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
HTML output
+ Collaboration diagram for HTML output:

Functions

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

Detailed Description

Function Documentation

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().

{
if (!is_object($PHPCAS_CLIENT)) {
phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');
}
if (gettype($footer) != 'string') {
phpCAS :: error('type mismatched for parameter $footer (should be `string\')');
}
$PHPCAS_CLIENT->setHTMLFooter($footer);
}

+ Here is the call graph for this function:

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().

{
if (!is_object($PHPCAS_CLIENT)) {
phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');
}
if (gettype($header) != 'string') {
phpCAS :: error('type mismatched for parameter $header (should be `string\')');
}
$PHPCAS_CLIENT->setHTMLHeader($header);
}

+ Here is the call graph for this function: