module.misc.par2.php 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. /////////////////////////////////////////////////////////////////
  7. // See readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.misc.par2.php //
  11. // module for analyzing PAR2 files //
  12. // dependencies: NONE //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. class getid3_par2 extends getid3_handler
  16. {
  17. function Analyze() {
  18. $info = &$this->getid3->info;
  19. $info['fileformat'] = 'par2';
  20. $info['error'][] = 'PAR2 parsing not enabled in this version of getID3()';
  21. return false;
  22. }
  23. }
  24. ?>