source: extensions/charlies_content/getid3/getid3/module.misc.doc.php @ 3544

Last change on this file since 3544 was 3544, checked in by vdigital, 15 years ago

Change: getid3 upgraded to -> 1.7.9

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
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.archive.doc.php                                      //
11// module for analyzing MS Office (.doc, .xls, etc) files      //
12// dependencies: NONE                                          //
13//                                                            ///
14/////////////////////////////////////////////////////////////////
15
16
17class getid3_doc
18{
19
20        function getid3_doc(&$fd, &$ThisFileInfo) {
21
22                $ThisFileInfo['fileformat'] = 'doc';
23
24                $ThisFileInfo['error'][] = 'MS Office (.doc, .xls, etc) parsing not enabled in this version of getID3()';
25                return false;
26
27        }
28
29}
30
31
32?>
Note: See TracBrowser for help on using the repository browser.