⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.89
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
SyncMl
/
View File Name :
SyncElement.php
,
and
elements found inside a
command. * * Instances of this class are created during the XML parsing by * Horde_SyncMl_Command_Sync. * * Copyright 2005-2016 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Karsten Fourmont
* @author Jan Schneider
* @package SyncMl */ class Horde_SyncMl_SyncElement { /** * The MIME content type of the sync command. * * @var string */ public $contentType; /** * Encoding format of the content as specified in the
* element, like 'b64'. * * @var string */ public $contentFormat; /** * The actual data content of the sync command. * * @var string $content */ public $content = ''; /** * The size of the data item of the sync command in bytes as specified by * a
element. * * @var integer */ public $size; /** * The command ID (
) of the sync command. * * @var integer */ public $cmdID; /** * Name of the sync command, like 'Add'. * * @var string */ public $elementType; /** * The client ID for the data item processed in the sync command. * * @var string */ public $cuid; /** * The code to be sent as status response in a
element, one of * the Horde_SyncMl::RESPONSE_* constants. * * This is set in Horde_SyncMl_Sync::handleClientSyncItem() when "processing" * the item. * * @var integer */ public $responseCode; /** * The Sync object for this element is part of. * * @var object Horde_SyncMl_Sync */ public $sync; /** * Constructor. * * @param Horde_SyncMl_Sync $sync * @param string $elementType * @param integer $cmdID * @param integer $size */ public function __construct($sync, $elementType, $cmdID, $size) { $this->sync = $sync; $this->elementType = $elementType; $this->cmdID = $cmdID; $this->size = $size; } }