| 382 | | * Set the HTML page headers |
| 383 | | * |
| 384 | | * @param string $headers_string HTML page headers |
| 385 | | * |
| 386 | | * @return void |
| 387 | | * |
| 388 | | * @access public |
| 389 | | */ |
| 390 | | public function setHtmlHeader($headers_string) |
| 391 | | { |
| 392 | | $this->_htmlHeaders = $headers_string; |
| | 382 | * Append HTML markup (normally <script> elements) to the <head> element to |
| | 383 | * the final page. |
| | 384 | * |
| | 385 | * @param string $headers_string HTML markup suitable for the HEAD element |
| | 386 | * |
| | 387 | * @return void |
| | 388 | * |
| | 389 | * @access public |
| | 390 | */ |
| | 391 | public function appendHtmlHeadContent($headers_string) |
| | 392 | { |
| | 393 | $this->_htmlHeaders .= $headers_string."\n"; |