HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress::setBorderPainted
decides to paint or not a border around a progress bar

Synopsis

require_once 'HTML/Progress.php';

void HTML_Progress::setBorderPainted( bool $paint)

Description

This method is used to decide whether the progress bar should paint its border or not.

Default behavior is progress meter with no border painted.

Parameter

    boolean $paint
  • whether the progress meter should render a border

Throws

Possible PEAR_Error values

Error level Error code Error message Solution
exception HTML_PROGRESS_ERROR_INVALID_INPUT invalid input, parameter #1 "$paint" was expecting "boolean" Fixed the cast of parameter

Note

( HTML_Progress >= 1.0 )

This function can not be called statically.

See

HTML_Progress::isBorderPainted, HTML_Progress_UI::setBorderAttributes

Example

Example below will produced a progress bar with a solid red border.

  1. <?php
  2. require_once 'HTML/Progress.php';
  3.  
  4. $bar = new HTML_Progress();
  5. $bar->setBorderPainted(true);
  6.  
  7. $ui =& $bar->getUI();
  8. $ui->setBorderAttributes(array(
  9. 'width' => 2,
  10. 'style' => 'solid',
  11. 'color' => 'red'
  12. ));
  13. ?>
  14. <!DOCTYPE html
  15. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  16. "http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  17.  
  18. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  19. <head>
  20. <title>setBorderPainted example </title>
  21. <style type="text/css">
  22. <!--
  23. <?php echo $bar->getStyle(); ?>
  24. // -->
  25. </style>
  26. <body>
  27.  
  28. <?php echo $bar->toHtml(); ?>
  29.  
  30. </body>
  31. </html>

Prev Up Next
HTML_Progress::isBorderPainted Reference Guide HTML_Progress::getUI

Documentation generated on Sun, 12 Sep 2004 20:23:10 +0200 by phpDocumentor 1.3.0RC3