/**
  * constractor
  */
 function XooNIpsFileSearchPluginPDF()
 {
     parent::XooNIpsFileSearchPlugin();
     $this->is_xml = false;
     $this->is_utf8 = true;
 }
 /**
  * close file resource
  *
  * @acccess protected
  */
 function _close_file()
 {
     if ($this->use_antiword) {
         // for antiword
         @pclose($this->handle);
         putenv('ANTWORDHOME=');
     } else {
         // for wv
         parent::_close_file();
         @unlink($this->tmpfile);
         $this->tmpfile = '';
     }
 }
 /**
  * constractor
  */
 function XooNIpsFileSearchPluginEXCEL()
 {
     parent::XooNIpsFileSearchPlugin();
     $this->is_xml = true;
     $this->is_utf8 = true;
 }