Skip to content

Commit

Permalink
Actually add the new file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 18, 2016
1 parent 5bd9faa commit 3021851
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions framework/ActiveSync/lib/Horde/ActiveSync/Message/Forwardee.php
@@ -0,0 +1,50 @@
<?php
/**
* Horde_ActiveSync_Message_Forwardee::
*
* @license http://www.horde.org/licenses/gpl GPLv2
* NOTE: According to sec. 8 of the GENERAL PUBLIC LICENSE (GPL),
* Version 2, the distribution of the Horde_ActiveSync module in or
* to the United States of America is excluded from the scope of this
* license.
* @copyright 2016 Horde LLC (http://www.horde.org)
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @package ActiveSync
*/
/**
* Horde_ActiveSync_Message_Picture:: Encapsulate the data to send in a
* GAL response.
*
* @license http://www.horde.org/licenses/gpl GPLv2
* NOTE: According to sec. 8 of the GENERAL PUBLIC LICENSE (GPL),
* Version 2, the distribution of the Horde_ActiveSync module in or
* to the United States of America is excluded from the scope of this
* license.
* @copyright 2016 Horde LLC (http://www.horde.org)
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @package ActiveSync
*
*/
class Horde_ActiveSync_Message_Forwardee extends Horde_ActiveSync_Message_Base
{
/**
* Property mapping
*
* @var array
*/
protected $_mapping = array(
Horde_ActiveSync_Message_SendMail::FORWARDEENAME => array(self::KEY_ATTRIBUTE => 'name'),
Horde_ActiveSync_Message_SendMail::FORWARDEEEMAIL => array(self::KEY_ATTRIBUTE => 'email')
);

/**
* Property values.
*
* @var array
*/
protected $_properties = array(
'name' => false,
'email' => false
);

}

0 comments on commit 3021851

Please sign in to comment.