HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress_UI::setBorderAttributes
defines look and feel of the progress bar border

Synopsis

require_once 'HTML/Progress/UI.php';

void HTML_Progress_UI::setBorderAttributes( mixed $attributes)

Description

This method is used to give a look and feel, such as size, style and color, to the border of a progress meter.

$attributes is an associative array or string of HTML tag attributes.

Parameter

    mixed $attributes
  • the new border attributes of the progress meter.

    Key-values allowed are:

    Attribute Format Default value
    class string progressBarBorder
    width integer 0
    style string solid
    color string #000000

Note

( HTML_Progress >= 1.0 )

This function can not be called statically.

You may also used an existing StyleSheet and a CSS class-selector with pre-defined style. For example:

  1. <?php
  2. require_once 'HTML/Progress.php';
  3.  
  4. $bar = new HTML_Progress();
  5. // specify a user-ident (instead of the auto-generated value)
  6. $bar->setIdent('PB1');
  7.  
  8. $ui =& $bar->getUI();
  9. $ui->setBorderAttributes('class="myProgressBorder"');
  10. ?>
could be replaced by:

<style type="text/css">
<!--
.PB1 .myProgressBar { border: 3px dotted #0000FF; }
// -->
</style>

See

HTML_Progress_UI::getBorderAttributes, HTML_Progress::setBorderPainted

Example

Example below will produced a progress bar with a solid navy border. It's a static example, the progress bar will not run.

  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->setCellAttributes('active-color=#3874B4 inactive-color=#EEEECC width=10');
  9. $ui->setBorderAttributes('width=1 color=navy');
  10. $ui->setStringAttributes('width=60 font-size=14 background-color=#EEEEEE');
  11. ?>
  12. <!DOCTYPE html
  13. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  14. "http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  15.  
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  17. <head>
  18. <title>setBorderAttributes example </title>
  19. <style type="text/css">
  20. <!--
  21. <?php echo $bar->getStyle(); ?>
  22. // -->
  23. </style>
  24. <body>
  25.  
  26. <?php echo $bar->toHtml(); ?>
  27.  
  28. </body>
  29. </html>

Prev Up Next
HTML_Progress_UI::getBorderAttributes Reference Guide HTML_Progress_UI::getStringAttributes

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