2005-06-19 21:00:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-07-15 21:31:25 +02:00
|
|
|
* eGroupWare - SyncML based on Horde 3
|
|
|
|
*
|
|
|
|
* The SyncML_Command_Results class provides a SyncML implementation of the
|
|
|
|
* Results command as defined in SyncML Representation Protocol, version 1.1,
|
|
|
|
* section 5.5.12.
|
|
|
|
*
|
|
|
|
* The Results command is used to return the results of a Search or Get
|
|
|
|
* command. Currently SyncML_Command_Results behaves the same as
|
|
|
|
* SyncML_Command_Put. The only results we get is the same DevInf as for the
|
|
|
|
* Put command.
|
2005-06-19 21:00:58 +02:00
|
|
|
*
|
|
|
|
*
|
2009-07-15 21:31:25 +02:00
|
|
|
* Using the PEAR Log class (which need to be installed!)
|
2005-06-19 21:00:58 +02:00
|
|
|
*
|
2009-07-15 21:31:25 +02:00
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage horde
|
|
|
|
* @author Anthony Mills <amills@pyramid6.com>
|
|
|
|
* @copyright (c) The Horde Project (http://www.horde.org/)
|
|
|
|
* @version $Id$
|
2005-06-19 21:00:58 +02:00
|
|
|
*/
|
2009-07-15 21:31:25 +02:00
|
|
|
include_once 'Horde/SyncML/Command/Put.php';
|
2007-12-19 08:45:36 +01:00
|
|
|
|
2009-07-15 21:31:25 +02:00
|
|
|
class Horde_SyncML_Command_Results extends Horde_SyncML_Command_Put {
|
2007-12-19 08:45:36 +01:00
|
|
|
|
2009-07-15 21:31:25 +02:00
|
|
|
/**
|
|
|
|
* Name of the command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $_cmdName = 'Results';
|
2007-12-19 08:45:36 +01:00
|
|
|
|
2005-06-19 21:00:58 +02:00
|
|
|
}
|