getid3_handler::__construct() – getid3_handler constructor.

You appear to be a bot. Output may be restricted

Description

getid3_handler constructor.

Usage

getid3_handler::__construct( $getid3, $call_module );

Parameters

$getid3
( getID3 ) required
$call_module
( string ) optional

Returns

void

Source

File name: wordpress/wp-includes/ID3/getid3.php
Lines:

1 to 7 of 7
  public function __construct(getID3 $getid3, $call_module=null) {
    $this->getid3 = $getid3;

    if ($call_module) {
      $this->dependency_to = str_replace('getid3_', '', $call_module);
    }
  }
 

 View on GitHub View on Trac