<?php namespace MailPoet\API\JSON; if (!defined('ABSPATH')) exit; use MailPoet\WP\Functions as WPFunctions; abstract class Response { const STATUS_OK = 200; const STATUS_BAD_REQUEST = 400; const STATUS_UNAUTHORIZED = 401; const STATUS_FORBIDDEN = 403; const STATUS_NOT_FOUND = 404; const STATUS_CONFLICT = 409; const STATUS_UNKNOWN = 500; public $status; public $meta; public function __construct( $status, $meta = [] ) { $this->status = $status; $this->meta = $meta; } public function send() { WPFunctions::get()->statusHeader($this->status); $data = $this->getData(); $response = []; if (!empty($this->meta)) { $response['meta'] = $this->meta; } if ($data === null) { $data = []; } $response = array_merge($response, $data); @header('Content-Type: application/json; charset=' . get_option('blog_charset')); echo WPFunctions::get()->wpJsonEncode($response); die(); } public abstract function getData(); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
ResponseBuilders | Folder | 0700 |
|
|
v1 | Folder | 0700 |
|
|
API.php | File | 8.66 KB | 0644 |
|
Endpoint.php | File | 1.48 KB | 0644 |
|
Error.php | File | 304 B | 0644 |
|
ErrorHandler.php | File | 860 B | 0644 |
|
ErrorResponse.php | File | 890 B | 0644 |
|
Response.php | File | 1020 B | 0644 |
|
SuccessResponse.php | File | 425 B | 0644 |
|
index.php | File | 0 B | 0644 |
|