Example #1
0
 function asString()
 {
     $args[] = $this->_fs;
     foreach ($this->_args as $arg) {
         $args[] = AsString($arg);
     }
     return call_user_func_array('sprintf', $args);
 }
Example #2
0
 /**
  * Return a plain-text version of this error.
  */
 function asString()
 {
     return AsString($this->_getDetail());
 }
Example #3
0
 function header()
 {
     global $HTML, $TITLE, $group_id;
     $HTML->header(array('title' => WIKI_NAME . ' - ' . AsString($TITLE), 'pagename' => $TITLE, 'group' => $group_id, 'toptab' => 'wiki', 'css' => '/themes/alcatel/phpwiki.css" />' . "\n" . '	<base href="' . PHPWIKI_BASE_URL));
 }