Source for file htmlpage.php
Documentation is available at htmlpage.php
@include '../include_path.php';
* PEAR::HTML_Page package made it easy to build
* a very simple ProgressBar Monitor.
* @version $Id: htmlpage.php,v 1.1 2004/06/27 13:08:50 farell Exp $
* @author Laurent Laville <pear@laurent-laville.org>
require_once 'HTML/Progress/monitor.php';
require_once 'HTML/Page.php';
$p = new HTML_Page (array (
'lineend' => OS_WINDOWS ? 'win' : 'unix',
'doctype' => "XHTML 1.0 Strict",
$p->setTitle ("PEAR::HTML_Progress - Simple Monitor demo");
$p->setMetaData ("author", "Laurent Laville");
$progressMonitor = new HTML_Progress_Monitor ();
$bar = & $progressMonitor->getProgressElement ();
$progressMonitor->getStyle ()
$p->addScriptDeclaration (
$progressMonitor->getScript ()
'<h1>PEAR::HTML_Page renderer without user-callback</h1>'
$progressMonitor->toHtml ()
'<p><< <a href="../index.html">Back examples TOC</a></p>'
Documentation generated on Mon, 11 Mar 2019 13:52:38 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|