| 
| Size: | 279 | 
| Storage flags: | strip | 
<?php
class getid3_pdf extends getid3_handler
{
public function Analyze() {
$info = &$this->getid3->info;
$info['fileformat'] = 'pdf';
$info['error'][] = 'PDF parsing not enabled in this version of getID3() ['.$this->getid3->version().']';
return false;
}
}