Skip to content

Commit

Permalink
Make Tnef decompressing more modular.
Browse files Browse the repository at this point in the history
Also, start some basic support for vTODO. Client code will see no
difference right now for BC reasons, but more detailed information
is available via new methods. Still need to finish/activate the vTodo
parsing and add some other stuff like RTF support.
  • Loading branch information
mrubinsk committed Dec 26, 2014
1 parent 5c17bf1 commit a96d2ea
Show file tree
Hide file tree
Showing 11 changed files with 1,125 additions and 396 deletions.
16 changes: 16 additions & 0 deletions framework/Compress/lib/Horde/Compress/Base.php
Expand Up @@ -28,6 +28,22 @@ class Horde_Compress_Base
*/
public $canDecompress = false;

/**
* Logger
*
* @var Horde_Log_Logger
*/
protected $_logger;

public function __construct($options = array())
{
if (!empty($options['logger'])) {
$this->_logger = $options['logger'];
} else {
$this->_logger = new Horde_Support_Stub();
}
}

/**
* Compress the data.
*
Expand Down

0 comments on commit a96d2ea

Please sign in to comment.