ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
module.archive.rar.php
Go to the documentation of this file.
1 <?php
4 // available at http://getid3.sourceforge.net //
5 // or http://www.getid3.org //
7 // See readme.txt for more details //
9 // //
10 // module.archive.rar.php //
11 // module for analyzing RAR files //
12 // dependencies: NONE //
13 // ///
15 
16 
18 {
19 
20  function getid3_rar(&$fd, &$ThisFileInfo) {
21 
22  $ThisFileInfo['fileformat'] = 'rar';
23 
24  $ThisFileInfo['error'][] = 'RAR parsing not enabled in this version of getID3()';
25  return false;
26 
27  }
28 
29 }
30 
31 
32 ?>