Source for file default.php
Documentation is available at default.php
// +----------------------------------------------------------------------+
// | PEAR :: HTML :: Progress |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2004 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/3_0.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: Laurent Laville <pear@laurent-laville.org> |
// +----------------------------------------------------------------------+
// $Id: default.php,v 1.3 2004/07/03 14:48:31 farell Exp $
* The ActionDisplay class provides the default form rendering.
* @author Laurent Laville <pear@laurent-laville.org>
* @subpackage Progress_UI
* @license http://www.php.net/license/3_0.txt PHP License 3.0
function _renderForm (&$page)
$pageName = $page->getAttribute ('name');
$tabPreview = array_slice ($page->controller ->_tabs , -2 , 1 );
$css->setStyle ('body', 'background-color', '#7B7B88');
$css->setStyle ('body', 'font-family', 'Verdana, Arial, helvetica');
$css->setStyle ('body', 'font-size', '10pt');
$css->setStyle ('h1', 'color', '#FFC');
$css->setStyle ('h1', 'text-align', 'center');
$css->setStyle ('.maintable', 'width', '100%');
$css->setStyle ('.maintable', 'border-width', '0');
$css->setStyle ('.maintable', 'border-style', 'thin dashed');
$css->setStyle ('.maintable', 'border-color', '#D0D0D0');
$css->setStyle ('.maintable', 'background-color', '#EEE');
$css->setStyle ('.maintable', 'cellspacing', '2');
$css->setStyle ('.maintable', 'cellspadding', '3');
$css->setStyle ('th', 'text-align', 'center');
$css->setStyle ('th', 'color', '#FFC');
$css->setStyle ('th', 'background-color', '#AAA');
$css->setStyle ('th', 'white-space', 'nowrap');
$css->setStyle ('input', 'font-family', 'Verdana, Arial, helvetica');
$css->setStyle ('input.flat', 'border-style', 'solid');
$css->setStyle ('input.flat', 'border-width', '2px 2px 0px 2px');
$css->setStyle ('input.flat', 'border-color', '#996');
// on preview tab, add progress bar javascript and stylesheet
if ($pageName == $tabPreview[0 ][0 ]) {
$bar = $page->controller ->createProgressBar ();
<script type="text/javascript">
$header = str_replace('{%style%}', $css->toString () . $bar->getStyle (), $header);
$header = str_replace('{%javascript%}', $bar->getScript (), $header);
$barElement = & $page->getElement ('progressBar');
$barElement->setText ( $bar->toHtml () );
$header = str_replace('{%style%}', $css->toString (), $header);
$renderer = & $page->defaultRenderer ();
$renderer->setFormTemplate ($header. '<table class="maintable"><form{attributes}>{content}</form></table>');
$renderer->setHeaderTemplate ('<tr><th colspan="2">{header}</th></tr>');
$renderer->setGroupTemplate ('<table><tr>{content}</tr></table>', 'name');
$renderer->setGroupElementTemplate ('<td>{element}<br /><span class="qfLabel">{label}</span></td>', 'name');
$page->accept ($renderer);
echo $renderer->toHtml ();
Documentation generated on Mon, 11 Mar 2019 13:52:36 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|