forked from kuisatz/slim_okulsis_v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgclass.php
85 lines (68 loc) · 2.72 KB
/
pgclass.php
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
<?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 2.10.2015
*/
$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\MiddlewareInsertUpdateDeleteLog());
$app->add(new \Slim\Middleware\MiddlewareHMAC());
$app->add(new \Slim\Middleware\MiddlewareSecurity());
$app->add(new \Slim\Middleware\MiddlewareMQManager());
$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 26-07-2016
* rest servislere eklendi
*/
$app->get("/pkFillInfoTablesDdList_pgClass/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('pgClassBLL');
$componentType = 'ddslick';
if (isset($_GET['component_type'])) {
$componentType = strtolower(trim($_GET['component_type']));
}
$headerParams = $app->request()->headers();
if (!isset($headerParams['X-Public']))
throw new Exception('rest api "pkFillInfoTablesDdList_pgClass" end point, X-Public variable not found');
//$pk = $headerParams['X-Public'];
$resCombobox = $BLL->fillInfoTablesDdList();
$flows = array();
$flows[] = array("text" => "Lütfen Seçiniz", "value" => 0, "selected" => true, "imageSrc" => "", "description" => "Lütfen Seçiniz",);
foreach ($resCombobox as $flow) {
$flows[] = array(
"text" => html_entity_decode($flow["name"]),
"value" => intval($flow["id"]),
"selected" => false,
"description" => html_entity_decode($flow["description"]),
// "imageSrc"=>$flow["logo"],
"attributes" => array(
"active" => $flow["active"],
),
);
}
$app->response()->header("Content-Type", "application/json");
$app->response()->body(json_encode($flows));
});
$app->run();