mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-25 23:33:02 +01:00
Supporto uscita da apertura API
This commit is contained in:
parent
7b03a2f3e5
commit
69b81da1e1
@ -186,8 +186,18 @@ class Manager
|
||||
$object = new $class();
|
||||
$method = $this->type;
|
||||
|
||||
$object->open($request);
|
||||
// Operazioni di inizializzazione
|
||||
$block = $object->open($request);
|
||||
if (!empty($block)) {
|
||||
return [
|
||||
'status' => 404,
|
||||
];
|
||||
}
|
||||
|
||||
// Operazioni della risorsa
|
||||
$response = $object->{$method}($request);
|
||||
|
||||
// Operazioni di completamento
|
||||
$object->close($request, $response);
|
||||
|
||||
return $response;
|
||||
|
Loading…
Reference in New Issue
Block a user