e8d25cba800d40c3425be590c14fb7755d5ae27d
[lhc/web/www.git] / www / plugins-dist / medias / lib / getid3 / module.misc.pdf.php
1 <?php
2 /////////////////////////////////////////////////////////////////
3 /// getID3() by James Heinrich <info@getid3.org> //
4 // available at http://getid3.sourceforge.net //
5 // or http://www.getid3.org //
6 // also https://github.com/JamesHeinrich/getID3 //
7 /////////////////////////////////////////////////////////////////
8 // See readme.txt for more details //
9 /////////////////////////////////////////////////////////////////
10 // //
11 // module.misc.pdf.php //
12 // module for analyzing PDF files //
13 // dependencies: NONE //
14 // ///
15 /////////////////////////////////////////////////////////////////
16
17
18 class getid3_pdf extends getid3_handler
19 {
20
21 public function Analyze() {
22 $info = &$this->getid3->info;
23
24 $info['fileformat'] = 'pdf';
25
26 $this->error('PDF parsing not enabled in this version of getID3() ['.$this->getid3->version().']');
27 return false;
28
29 }
30
31 }