You appear to be a bot. Output may be restricted
Description
Determine the library file to load
Usage
$string = oik_lib_determine_lib( $library, $version, $args );
Parameters
- $library
- ( string ) required – the name of the (registered) library
- $version
- ( string ) optional – the required library version. null means don't care
- $args
- ( array ) optional – additional parameters
Returns
string the full path to the library file to loadSource
File name: oik-libs/libs/oik-lib.phpLines:
1 to 5 of 5
function oik_lib_determine_lib( $library, $version=null, $args=null ) { $oik_libs = oik_libs(); $library_file = $oik_libs->determine_lib( $library, $version ); return( $library_file ); }View on GitHub