You appear to be a bot. Output may be restricted
Description
Attempt to determine the API type from the source and comments
Usage
oiksc_token_object::getApiType();
Parameters
Returns
voidSource
File name: oik-shortcodes/classes/class-oiksc-token-object.phpLines:
1 to 15 of 15
function getApiType() { oik_require( "admin/oik-apitype.php", "oik-shortcodes" ); if ( function_exists( "oikai_api_type" ) ) { oik_require( "shortcodes/oik-api-importer.php", "oik-shortcodes" ); $docblock = oikai_reflect_docblock( $this ); // @TODO these functions will need moving. $type = oikai_api_type( $this->getApiName(), $this, $docblock ); if ( $type ) { $type = $type[0]; } } else { $type = null; } return( $type ); }View on GitHub