You appear to be a bot. Output may be restricted
Description
Create a field labelExpects the text to have already been translated.
Usage
$string = BW_::label( $name, $text );
Parameters
- $name
- ( string ) required – field name
- $text
- ( string ) required – label to display
Returns
string the HTML label tagSource
File name: oik-bwtrace/libs/class-BW-.phpLines:
1 to 8 of 8
static function label( $name, $text ) { $lab = "<label for=\""; $lab.= $name; $lab.= "\">"; $lab.= $text; $lab.= "</label>"; return $lab; }View on GitHub View on Trac