One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
oldserver
/
2
/
usr
/
share
/
pear
/
Horde
/
SyncMl
/
View File Name :
SyncElement.php
<?php /** * The class Horde_SyncMl_Command_SyncElement stores information from the * <Add>, <Delete> and <Replace> elements found inside a <Sync> 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 <karsten@horde.org> * @author Jan Schneider <jan@horde.org> * @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 <Meta><Format> * 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 <Size> element. * * @var integer */ public $size; /** * The command ID (<CmdID>) 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 <Status> 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; } }