You appear to be a bot. Output may be restricted
Description
Strip all the classes, methods and APIs from the file
Usage
$array = oiksc_listfile_strip_apis( $contents_arr, $apis );
Parameters
- $contents_arr
- ( array ) required – the file contents
- $apis
- ( array ) required – array of oiksc_token_objs
Returns
array $contents_arr – the stripped file
Source
File name: oik-shortcodes/admin/oik-files.php
Lines:
1 to 9 of 9
function oiksc_listfile_strip_apis( $contents_arr, $apis ) { foreach ( $apis as $api ) { $contents_arr = oiksc_contents_strip( $contents_arr, $api->getStartLine(), $api->getEndLine() ); $contents_arr = oiksc_contents_strip_docblock( $contents_arr, $api->getStartLine(), $api->getEndLine(), $api ); $contents_arr = oiksc_contents_link( $contents_arr, $api ); //print_r( $contents_arr ); } return( $contents_arr ); }