blob: 0a2dd956480d8a7c630721dbb814c42a41c1e023 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
namespace AugustOffensive\view;
use AugustOffensive\controller;
use AugustOffensive\model;
/**
* Outputs the JSON result by communicating with the controller.
*/
class Result
{
/**
* Prepares the output and environment for the front end of the service.
*
* @param \Connection $connection "needs to know" model exists
*
* @return Result
*/
public function __construct (model\Connection $connection)
{
header("Content-Type: application/json");
//
}
/**
* Communicates with the controller to generate the JSON result.
*
* @return string $result resulting sendback object generated from query.
*/
public function collect ()
{
//
return json_encode(array("Result-Type" => "", "Content" => array()));
}
}
|