Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
OrganisationDelete | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
readResponse | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * |
5 | * @package Zmsadmin |
6 | * @copyright BerlinOnline Stadtportal GmbH & Co. KG |
7 | * |
8 | */ |
9 | |
10 | namespace BO\Zmsadmin; |
11 | |
12 | use BO\Mellon\Validator; |
13 | use BO\Slim\Render; |
14 | |
15 | /** |
16 | * Delete an Organisation |
17 | */ |
18 | class OrganisationDelete extends BaseController |
19 | { |
20 | /** |
21 | * |
22 | * @return String |
23 | */ |
24 | public function readResponse( |
25 | \Psr\Http\Message\RequestInterface $request, |
26 | \Psr\Http\Message\ResponseInterface $response, |
27 | array $args |
28 | ) { |
29 | $entityId = Validator::value($args['id'])->isNumber() |
30 | ->getValue(); |
31 | \App::$http->readDeleteResult('/organisation/' . $entityId . '/') |
32 | ->getEntity(); |
33 | return \BO\Slim\Render::redirect( |
34 | 'owner_overview', |
35 | array(), |
36 | array( |
37 | 'success' => 'organisation_deleted' |
38 | ) |
39 | ); |
40 | } |
41 | } |