You appear to be a bot. Output may be restricted
Description
Print information about the @TODO tags, if any
Usage
oikai_print_todos( $refFunc, $docblock );
Parameters
- $refFunc
- ( object ) required – a Reflection Function object
- $docblock
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-importer.phpLines:
1 to 10 of 10
function oikai_print_todos( $refFunc, $docblock ) { $tags = $docblock->getTags(); foreach ( $tags as $tag ) { //bw_trace2( $tag ); list( $tagname, $description ) = explode( " ", $tag . " . . .", 2 ); if ( substr( strtolower( $tagname ), 0, 5 ) == "@todo" ) { oikai_print_todo_info( $description ); } } }View on GitHub