setHTMLFooter() public method

This method set the HTML footer used for all outputs.
public setHTMLFooter ( string $footer ) : void
$footer string the HTML footer.
return void
Exemplo n.º 1
0
 /**
  * This method sets the HTML footer used for all outputs.
  *
  * @param string $footer the HTML footer.
  *
  * @return void
  */
 public static function setHTMLFooter($footer)
 {
     phpCAS::_validateClientExists();
     try {
         self::$_PHPCAS_CLIENT->setHTMLFooter($footer);
     } catch (Exception $e) {
         phpCAS::error(get_class($e) . ': ' . $e->getMessage());
     }
 }