Returns the requested rendered contextual links.
Given a list of contextual links IDs, render them. Hence this must be robust to handle arbitrary input.
\Symfony\Component\HttpFoundation\JsonResponse The JSON response.
public function render(Request $request) {
$ids = $request->request
->get('ids');
if (!isset($ids)) {
throw new BadRequestHttpException(t('No contextual ids specified.'));
}
$rendered = array();
foreach ($ids as $id) {
$element = array(
'#type' => 'contextual_links',
'#contextual_links' => _contextual_id_to_links($id),
);
$rendered[$id] = drupal_render($element);
}
return new JsonResponse($rendered);
}