Changeset 1397 for trunk/lib/AkConverters/AkMsWordToMany.php
- Timestamp:
- 08/31/09 18:56:20 (1 year ago)
- Files:
-
- trunk/lib/AkConverters/AkMsWordToMany.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/AkConverters/AkMsWordToMany.php
r296 r1397 19 19 class AkMsWordToMany 20 20 { 21 var$_file_type_codes = array('doc' => 0,'dot' => 1,'txt'=>2,'rtf'=>6,'unicode'=>7,'htm'=>8,'html'=>8,'asc'=>9,'wri'=>13,'wp.doc'=>24,'wps'=>28);21 public $_file_type_codes = array('doc' => 0,'dot' => 1,'txt'=>2,'rtf'=>6,'unicode'=>7,'htm'=>8,'html'=>8,'asc'=>9,'wri'=>13,'wp.doc'=>24,'wps'=>28); 22 22 23 function convert()23 public function convert() 24 24 { 25 25 $word = new COM('word.application') or die('Unable to instantiate Word'); … … 38 38 } 39 39 40 function init()40 public function init() 41 41 { 42 42 $this->ext = empty($this->ext) ? 'doc' : strtolower(trim($this->ext,'.'));
