You appear to be a bot. Output may be restricted
Description
Output a paragraph of translatable texti18n note: If the text you are displaying contains variables to be inserted into the message then you should use p_() instead and perform the translation prior to calling that function.
Usage
p( $text, $class, $id );
Parameters
- $text
- ( mixed ) optional –
- $class
- ( mixed ) optional –
- $id
- ( mixed ) optional –
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 6 of 6
function p( $text=NULL, $class=NULL, $id=NULL ) { sp( $class, $id ); if ( !is_null( $text )) e( bw_translate( $text ) ); etag( "p" ); }View on GitHub View on Trac