getid3_matroska::unhandledElement()
{} It's a method of the class: getid3_matroska{}
No Hooks.
Return
null
. Nothing.
Usage
// private - for code of main (parent) class only $result = $this->unhandledElement( $type, $line, $element );
- $type(string) (required)
- -
- $line(int) (required)
- -
- $element(array) (required)
- -
Code of getid3_matroska::unhandledElement() getid3 matroska::unhandledElement WP 6.0
private function unhandledElement($type, $line, $element) { // warn only about unknown and missed elements, not about unuseful if (!in_array($element['id'], $this->unuseful_elements)) { $this->warning('Unhandled '.$type.' element ['.basename(__FILE__).':'.$line.'] ('.$element['id'].'::'.$element['id_name'].' ['.$element['length'].' bytes]) at '.$element['offset']); } // increase offset for unparsed elements if (!isset($element['data'])) { $this->current_offset = $element['end']; } }