-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbladminactivationreport.php
More file actions
97 lines (70 loc) · 2.67 KB
/
bladminactivationreport.php
File metadata and controls
97 lines (70 loc) · 2.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
// test commit for branch slim2
require 'vendor/autoload.php';
use \Services\Filter\Helper\FilterFactoryNames as stripChainers;
/*$app = new \Slim\Slim(array(
'mode' => 'development',
'debug' => true,
'log.enabled' => true,
));*/
$app = new \Slim\SlimExtended(array(
'mode' => 'development',
'debug' => true,
'log.enabled' => true,
'log.level' => \Slim\Log::INFO,
'exceptions.rabbitMQ' => true,
'exceptions.rabbitMQ.logging' => \Slim\SlimExtended::LOG_RABBITMQ_FILE,
'exceptions.rabbitMQ.queue.name' => \Slim\SlimExtended::EXCEPTIONS_RABBITMQ_QUEUE_NAME
));
/**
* "Cross-origion resource sharing" kontrolüne izin verilmesi için eklenmiştir
* @author Okan CIRAN Ğ
* @since 05.01.2016
*/
$res = $app->response();
$res->header('Access-Control-Allow-Origin', '*');
$res->header("Access-Control-Allow-Methods: PUT, GET, POST, DELETE, OPTIONS");
//$app->add(new \Slim\Middleware\MiddlewareTest());
$app->add(new \Slim\Middleware\MiddlewareHMAC());
$app->add(new \Slim\Middleware\MiddlewareSecurity());
$app->add(new \Slim\Middleware\MiddlewareBLLManager());
$app->add(new \Slim\Middleware\MiddlewareDalManager());
$app->add(new \Slim\Middleware\MiddlewareServiceManager());
$app->add(new \Slim\Middleware\MiddlewareMQManager());
/**
* * OKAN CIRAN
* @since 08-03-2016
*/
$app->get("/pkGetAllConsultantFirmCount_blAdminActivationReport/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('blAdminActivationReportBLL');
// $headerParams = $app->request()->headers();
//$vPk = $headerParams['X-Public'];
$resDataMenu = $BLL->getAllConsultantFirmCount();
$app->response()->header("Content-Type", "application/json");
$app->response()->body($resDataMenu);
});
/**
* * OKAN CIRAN
* @since 08-03-2016
*/
$app->get("/pkGetUpDashBoardCount_blAdminActivationReport/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('blAdminActivationReportBLL');
// $headerParams = $app->request()->headers();
// $vPk = $headerParams['X-Public'];
$resDataMenu = $BLL->getUpDashBoardCount();
$app->response()->header("Content-Type", "application/json");
$app->response()->body($resDataMenu);
});
/**
* * OKAN CIRAN
* @since 08-03-2016
*/
$app->get("/pkGetDashBoardHighCharts_blAdminActivationReport/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('blAdminActivationReportBLL');
// $headerParams = $app->request()->headers();
// $vPk = $headerParams['X-Public'];
$resDataMenu = $BLL->getDashBoardHighCharts();
$app->response()->header("Content-Type", "application/json");
$app->response()->body($resDataMenu);
});
$app->run();