You appear to be a bot. Output may be restricted
Description
Create a block header if the title text is specifiedNotes: link and icon parameters not yet supported. <div class="art-blockheader"> <div class="t">Artisteer 4 – block </div> </div>
Usage
artblockheader_41( $title, $link, $icon );
Parameters
- $title
- ( mixed ) optional –
- $link
- ( mixed ) optional –
- $icon
- ( mixed ) optional –
Returns
voidSource
File name: oik/bw_block_41.incLines:
1 to 9 of 9
function artblockheader_41( $title=NULL, $link=NULL, $icon=NULL ) { if ( $title ) { sdiv( "art-blockheader"); sdiv( "t" ); e( $title ); ediv(); ediv(); } }View on GitHub View on Trac