You appear to be a bot. Output may be restricted
Description
Create a table heading cellIn the first version the cell was not created if there was no value. In oik v2.4 the cell is created even when there is no contents. This may make it easier for [bw_csv] with blanks and zeros.
Usage
bw_th( $text, $class, $id );
Parameters
- $text
- ( string ) optional – cell contents
- $class
- ( string ) optional – table heading class
- $id
- ( string ) optional – table heading ID
Returns
voidSource
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 5 of 5
function bw_th( $text=NULL, $class=NULL, $id=NULL ) { stag( "th", $class, $id ); e( $text ); etag( "th"); }View on GitHub View on Trac