HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress::getString
returns the current value of the progress meter string

Synopsis

require_once 'HTML/Progress.php';

string HTML_Progress::getString()

Description

This method is used to retrieve the custom string attached to the progress meter.

By default, the progress meter displays the value returned by HTML_Progress::getPercentComplete() method formatted as a percent such as 33%.

Note

( HTML_Progress >= 1.0 )

This function can not be called statically.

See

HTML_Progress::setString, HTML_Progress::isStringPainted, HTML_Progress::setStringPainted

Example

Example below will produced a progress bar with a custom string.

  1. <?php
  2. require_once 'HTML/Progress.php';
  3.  
  4. $bar = new HTML_Progress();
  5. $bar->setValue(25);
  6. $bar->setStringPainted(true);
  7.  
  8. $ui =& $bar->getUI();
  9. $ui->setStringAttributes('width=350 align=left');
  10. ?>
  11. <html>
  12. <head>
  13. <title>getString example</title>
  14. <style type="text/css">
  15. <!--
  16. <?php echo $bar->getStyle(); ?>
  17. // -->
  18. </style>
  19. <script type="text/javascript">
  20. <!--
  21. <?php echo $bar->getScript(); ?>
  22. //-->
  23. </script>
  24. </head>
  25. <body>
  26.  
  27. <?php
  28. echo $bar->toHtml();
  29.  
  30. $val = $bar->getValue();
  31. $msg = "&nbsp; installing package ($val %) ... : Config";
  32. $bar->setString($msg);
  33.  
  34. $bar->display();
  35.  
  36. echo '<h1>Progress Meter Custom String</h1>';
  37. print($bar->getString());
  38. ?>
  39.  
  40. </body>
  41. </html>

Prev Up Next
HTML_Progress::setAnimSpeed Reference Guide HTML_Progress::setString

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