created timelineData function and added it to its route
This commit is contained in:
+19
-5
@@ -7,17 +7,31 @@ use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use Slim\Factory\AppFactory;
|
||||
|
||||
require "routes.php";
|
||||
require "./vendor/autoload.php";
|
||||
//require “routes.php”;
|
||||
require “../vendor/autoload.php”;
|
||||
include "timelineData.php";
|
||||
|
||||
// Start slim
|
||||
$app = AppFactory::create();
|
||||
// create middleware
|
||||
$app->addRoutingMiddleware();
|
||||
|
||||
$errorMiddleware = $app->addErrorMiddleware(false, true, true);
|
||||
// for error checking
|
||||
$errorMiddleware = $app->addErrorMiddleware(true, true, true);
|
||||
|
||||
$app->get("/timelineData", function (Request $request, Response $response)
|
||||
$app->setBasePath(“/api”);
|
||||
|
||||
$timelineData = new TimelineData();
|
||||
|
||||
$app->get(“/timelineData”, function (Request $request, Response $response)
|
||||
{
|
||||
|
||||
$result = $timelineData->getTimelineData();
|
||||
|
||||
$json = json_encode($result);
|
||||
|
||||
$response->getBody()->write($json);
|
||||
|
||||
return $response->withHeader("Content-Type", "application/json");
|
||||
});
|
||||
|
||||
$app->run();1q
|
||||
|
||||
Reference in New Issue
Block a user