|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / a / home / dev2.destoffenstraat.com / vendor / magento / framework / Webapi / |
Filename | /home/a/home/dev2.destoffenstraat.com/vendor/magento/framework/Webapi/Response.php |
Size | 1.91 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 21-Aug-2025 12:26 |
Last modified | 07-Jan-2021 21:08 |
Last accessed | 22-Aug-2025 21:49 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/**
* Web API response.
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Webapi;
class Response extends \Magento\Framework\HTTP\PhpEnvironment\Response implements
\Magento\Framework\App\Response\HttpInterface
{
/**
* Character set which must be used in response.
*/
const RESPONSE_CHARSET = 'utf-8';
/**#@+
* Default message types.
*/
const MESSAGE_TYPE_SUCCESS = 'success';
const MESSAGE_TYPE_ERROR = 'error';
const MESSAGE_TYPE_WARNING = 'warning';
/**#@- */
/**#@+
* Success HTTP response codes.
*/
const HTTP_OK = 200;
/**#@-*/
/**#@-*/
protected $_messages = [];
/**
* Set header appropriate to specified MIME type.
*
* @param string $mimeType MIME type
* @return $this
*/
public function setMimeType($mimeType)
{
return $this->setHeader('Content-Type', "{$mimeType}; charset=" . self::RESPONSE_CHARSET, true);
}
/**
* Add message to response.
*
* @param string $message
* @param string $code
* @param array $params
* @param string $type
* @return $this
*/
public function addMessage($message, $code, $params = [], $type = self::MESSAGE_TYPE_ERROR)
{
$params['message'] = $message;
$params['code'] = $code;
$this->_messages[$type][] = $params;
return $this;
}
/**
* Has messages.
*
* @return bool
*/
public function hasMessages()
{
return (bool)count($this->_messages) > 0;
}
/**
* Return messages.
*
* @return array
*/
public function getMessages()
{
return $this->_messages;
}
/**
* Clear messages.
*
* @return $this
*/
public function clearMessages()
{
$this->_messages = [];
return $this;
}
}
/**
* Web API response.
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Webapi;
class Response extends \Magento\Framework\HTTP\PhpEnvironment\Response implements
\Magento\Framework\App\Response\HttpInterface
{
/**
* Character set which must be used in response.
*/
const RESPONSE_CHARSET = 'utf-8';
/**#@+
* Default message types.
*/
const MESSAGE_TYPE_SUCCESS = 'success';
const MESSAGE_TYPE_ERROR = 'error';
const MESSAGE_TYPE_WARNING = 'warning';
/**#@- */
/**#@+
* Success HTTP response codes.
*/
const HTTP_OK = 200;
/**#@-*/
/**#@-*/
protected $_messages = [];
/**
* Set header appropriate to specified MIME type.
*
* @param string $mimeType MIME type
* @return $this
*/
public function setMimeType($mimeType)
{
return $this->setHeader('Content-Type', "{$mimeType}; charset=" . self::RESPONSE_CHARSET, true);
}
/**
* Add message to response.
*
* @param string $message
* @param string $code
* @param array $params
* @param string $type
* @return $this
*/
public function addMessage($message, $code, $params = [], $type = self::MESSAGE_TYPE_ERROR)
{
$params['message'] = $message;
$params['code'] = $code;
$this->_messages[$type][] = $params;
return $this;
}
/**
* Has messages.
*
* @return bool
*/
public function hasMessages()
{
return (bool)count($this->_messages) > 0;
}
/**
* Return messages.
*
* @return array
*/
public function getMessages()
{
return $this->_messages;
}
/**
* Clear messages.
*
* @return $this
*/
public function clearMessages()
{
$this->_messages = [];
return $this;
}
}