git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
24 lines
465 B
PHP
24 lines
465 B
PHP
<?php
|
|
|
|
class PowerpointExtractor extends OOFallbackDocumentExtractor
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('catppt', '{$escape}{$cmd}{$escape} -d UTF-8 {$escape}{$sourcefile}{$escape} > {$escape}{$targetfile}{$escape}');
|
|
}
|
|
|
|
public function getDisplayName()
|
|
{
|
|
return _kt('Office Powerpoint Text Extractor');
|
|
}
|
|
|
|
public function getSupportedMimeTypes()
|
|
{
|
|
return array();
|
|
return array(
|
|
'application/vnd.ms-powerpoint'
|
|
);
|
|
}
|
|
}
|
|
|
|
?>
|