getID3::include_module() –
You appear to be a bot. Output may be restricted
Description
Usage
$bool = getID3::include_module( $name );
Parameters
- $name
- ( string ) required –
Returns
bool
Source
File name: wordpress/wp-includes/ID3/getid3.php
Lines:
1 to 8 of 8
public function include_module($name) { //if (!file_exists($this->include_path.'module.'.$name.'.php')) { if (!file_exists(GETID3_INCLUDEPATH.'module.'.$name.'.php')) { throw new getid3_exception('Required module.'.$name.'.php is missing.'); } include_once(GETID3_INCLUDEPATH.'module.'.$name.'.php'); return true; }