You appear to be a bot. Output may be restricted
Description
Print information about a TODOThere may be more than one TODO in a docblock. However, we shouldn't expect any. So, we format each TODO separately.
Usage
oikai_print_todo_info( $description );
Parameters
- $description
- ( string ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-importer.phpLines:
1 to 10 of 10
function oikai_print_todo_info( $description ) { sdiv( "todo" ); h2( "TO DO" ); $description = substr( $description, 0, -5 ); $description = ltrim( $description, "- " ); oikai_format_description( $description ); ediv(); }View on GitHub