module.misc.par2.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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
  16. {
  17. function getid3_par2(&$fd, &$ThisFileInfo) {
  18. $ThisFileInfo['fileformat'] = 'par2';
  19. $ThisFileInfo['error'][] = 'PAR2 parsing not enabled in this version of getID3()';
  20. return false;
  21. }
  22. }
  23. ?>