File "openbay.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/catalog/controller/extension/openbay/openbay.php
File size: 533 B (533 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
class ControllerExtensionOpenbayOpenbay extends Controller {
    public function index() {
        $this->response->addHeader('Cache-Control: no-cache, must-revalidate');
        $this->response->addHeader('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
        $this->response->addHeader('Content-type: application/json; charset=utf-8');
        $this->response->addHeader('X-Openbay-Header: hello');

        http_response_code(200);
        $this->response->setOutput(json_encode(array('reply' => 'hello')));
    }
}