| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/actindo/classes/Components/ |
Upload File : |
<?php
require_once('Zend/XmlRpc/Response.php');
/**
* Actindo Faktura/WWS Connector
* import product
* Imports Products from Actindo ERP to Shop
* Extends the Product Export
* @package actindo
* @author Patrick Prasse <patrick.prasse@actindo.com>
*
* @version $Revision: 901 $
* @copyright Copyright© Actindo AG 2018, <support@actindo.com>, Carl-Zeiss-Ring 15 - 85737 Ismaning
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
*/
class Actindo_Connector_Components_Response extends Zend_XmlRpc_Response
{
/**
* Override __toString() to send HTTP Content Type Header
*/
public function __toString()
{
/**
* removed according to customer notes about double headers with fcgi
*if (!headers_sent()) {
* header('Content-Type: text/xml; charset=' . strtolower($this->getEncoding()));
* }
*/
return parent::__toString();
}
}