Inizial rework and implementation of parent field as finder

This commit is contained in:
Djamil Legato
2019-06-01 00:32:36 -07:00
parent 8649d8ab8a
commit 09f5dbbcc0
24 changed files with 342 additions and 220 deletions

View File

@@ -1462,7 +1462,7 @@ class AdminController extends AdminBaseController
}
}
$response[$fileInfo->getFilename()] = $payload;
$response[] = $payload;
}
} else {
$msg = 'PLUGIN_ADMIN.PAGE_ROUTE_NOT_FOUND';
@@ -1481,7 +1481,7 @@ class AdminController extends AdminBaseController
$this->admin->json_response = [
'status' => $status,
'message' => $this->admin::translate($msg ?? 'PLUGIN_ADMIN.NO_ROUTE_PROVIDED'),
'response' => $response
'data' => $response
];
return true;