Lines:
1 to 27 of 27
<?php // (C) Copyright Bobbing Wide 2014-2017, 2021 /** * Functions to dynamically "load" methods and functions from source files that are not already loaded * * Copied / moved from play/listapis2.php so that they can be used both by oik-batch's createapi.php and oik-shortcodes. * */ oik_require( "classes/class-oiksc-function-loader.php", "oik-shortcodes" ); oik_require( "classes/class-oiksc-token-object.php", "oik-shortcodes" ); /* function _oiksc_get_token_object() – Return the token at $index if it’s of type $type */ /* function _oiksc_get_endline() – Determine the end line number */ /* function oiksc_real_file() – Return the "real file" name */ /* function oiksc_load_file() – Load the full file into an array */ /* function oiksc_list_file_functions2() – List functions implemented in the file */ /* function _oiksc_list_classes2() – List the classes/functions implemented within the source file */ /* function oiksc_find_function() – Return the oiksc_token_object for the chosen function */View on GitHub