Formatting output Plese Wait...
underline Class Reference
[HTML helper.]
Represents the
underline tag.
More...
|
Public Member Functions |
| open ($attr=null) |
| Openes the <u> Tag.
|
| close () |
| Closes an opened <u> tag.
|
Detailed Description
Represents the
underline tag.
Definition at line 534 of file dict.php.
Member Function Documentation
underline::open( array $attr = null
)
Openes the <u> Tag.
- Parameters:
-
- Returns:
- string
Definition at line 541 of file dict.php.
References merge_attr().
Show Source00541 {
00542 $ret = "<u ";
00543 $ret .= merge_attr($attr)." >";
00544 return $ret;
00545 }
Top
Closes an opened <u> tag.
- Returns:
- string
Reimplemented from HtmlTag.
Definition at line 551 of file dict.php.
Show Source00551 {
00552 return "</u>";
00553 }
Top
The documentation for this class was generated from the following file: