HTTP 처리에 사용해야하는 동등한 기능은 무엇입니까?


17

Drupal 7HTTP 처리 페이지에 나열된 기능을 살펴보면 Drupal 8 에는 다음 기능이 더 이상 존재하지 않는 것으로 나타났습니다. (드링크는 Drupal 7 설명서 페이지에 대한 링크입니다. 기능이 없습니다.)

Drupal 8에서 어떤 기능 / 방법을 대신 사용해야합니까?


1
이 질문은 Drupal 7과 Drupal 8의 차이점에 대한
일련

답변:


16

Drupal 8.6.x 코드에서 사용해야하는 함수 / 방법 / 클래스입니다.

  • drupal_access_denied()AccessDeniedHttpException 클래스 에서 대체되었습니다 . 액세스 거부 오류를 리턴해야하는 페이지 콜백은 다음 코드와 유사한 코드를 사용해야합니다.

    // system_batch_page()
    public function batchPage(Request $request) {
      require_once $this->root . '/core/includes/batch.inc';
      $output = _batch_page($request);
      if ($output === FALSE) {
        throw new AccessDeniedHttpException();
      }
      elseif ($output instanceof Response) {
        return $output;
      }
      elseif (isset($output)) {
        $title = isset($output['#title']) ? $output['#title'] : NULL;
        $page = [
          '#type' => 'page',
          '#title' => $title,
          '#show_messages' => FALSE,
          'content' => $output,
        ];
    
        // Also inject title as a page header (if available).
        if ($title) {
          $page['header'] = [
            '#type' => 'page_title',
            '#title' => $title,
          ];
        }
        return $page;
      }
    }
  • 대신에 drupal_get_query_array()존재 parse_query()합니다 (함수에서 GuzzleHttp\Psr7폭식의 일부 네임 스페이스).

  • drupal_goto()RedirectResponse수업 에서 교체되었습니다 . 사용자를 리디렉션해야하는 페이지 콜백은 다음 코드와 유사한 코드를 사용해야합니다. 양식 제출 핸들러는이 클래스를 사용하지 않아야합니다.

    // AddSectionController::build()
    public function build(SectionStorageInterface $section_storage, $delta, $plugin_id) {
      $section_storage
        ->insertSection($delta, new Section($plugin_id));
      $this->layoutTempstoreRepository
        ->set($section_storage);
      if ($this->isAjax()) {
        return $this->rebuildAndClose($section_storage);
      }
      else {
        $url = $section_storage->getLayoutBuilderUrl();
        return new RedirectResponse($url->setAbsolute()->toString());
      }
    }
  • drupal_http_request()ClientInterface 인터페이스 를 구현하는 Drupal 8 서비스에서 대체되었습니다 . Drupal 8 코드는 다음 코드와 유사해야합니다.

    // system_retrieve_file()
    try {
      $data = (string) \Drupal::httpClient()->get($url)->getBody();
      $local = $managed ? file_save_data($data, $path, $replace) : file_unmanaged_save_data($data, $path, $replace);
    } catch (RequestException $exception) {
      \Drupal::messenger()->addError(t('Failed to fetch file due to error "%error"', ['%error' => $exception->getMessage()]));
      return FALSE;
    }
  • drupal_not_found()NotFoundHttpException 클래스 에서 대체되었습니다 . 페이지 콜백은 다음 코드와 유사한 코드를 사용해야합니다.

    // BookController::bookExport()
    public function bookExport($type, NodeInterface $node) {
      $method = 'bookExport' . Container::camelize($type);
    
      // @todo Convert the custom export functionality to serializer.
      if (!method_exists($this->bookExport, $method)) {
        $this->messenger()->addStatus(t('Unknown export format.'));
        throw new NotFoundHttpException();
      }
      $exported_book = $this->bookExport->{$method}($node);
      return new Response($this->renderer->renderRoot($exported_book));
    }
  • drupal_site_offline() 다음과 유사한 이벤트 구독자로 교체해야합니다.

    public static function getSubscribedEvents() {
      $events[KernelEvents::REQUEST][] = ['onKernelRequestMaintenance', 30];
      $events[KernelEvents::EXCEPTION][] = ['onKernelRequestMaintenance'];
      return $events;
    }
    
    public function onKernelRequestMaintenance(GetResponseEvent $event) {
      $request = $event->getRequest();
      $route_match = RouteMatch::createFromRequest($request);
      if ($this->maintenanceMode->applies($route_match)) {
        // Don't cache maintenance mode pages.
        \Drupal::service('page_cache_kill_switch')->trigger();
        if (!$this->maintenanceMode->exempt($this->account)) {
          // Deliver the 503 page if the site is in maintenance mode and the
          // logged in user is not allowed to bypass it.
          // If the request format is not 'html' then show default maintenance
          // mode page else show a text/plain page with maintenance message.
          if ($request->getRequestFormat() !== 'html') {
            $response = new Response($this->getSiteMaintenanceMessage(), %03, ['Content-Type' => 'text/plain']);
            $event->setResponse($response);
            return;
          }
          drupal_maintenance_theme();
          $response = $this->bareHtmlPageRenderer->renderBarePage([          '#markup' => $this->getSiteMaintenanceMessage()], $this->t('Site under maintenance'), 'maintenance_page');
          $response->setStatusCode(503);
          $event->setResponse($response);
        }
        else {
          // Display a message if the logged in user has access to the site in
          // maintenance mode. However, suppress it on the maintenance mode
          // settings page.
          if ($route_match->getRouteName() != 'system.site_maintenance_mode') {
            if ($this->account->hasPermission('administer site configuration')) {
              $this->messenger->addMessage($this
          ->t('Operating in maintenance mode. <a href=":url">Go online.</a>', [':url' => $this->urlGenerator->generate('system.site_maintenance_mode')]), 'status', FALSE);
            }
            else {
              $this->messenger->addMessage($this->t('Operating in maintenance mode.'), 'status', FALSE);
            }
          }
        }
      }
    }
    • drupal_encode_path() 에 의해 대체되었습니다 UrlHelper::encodePath()
    • drupal_get_query_parameters() 에 의해 대체되었습니다 UrlHelper::filterQueryParameters()
    • drupal_http_build_query()대체 된 UrlHelper::buildQuery()드루팔 코어는 적어도 5.4 PHP가 요구되면 제거 될 것이다 (그 시점에서, 직접 사용할 수있을 것이다 http_build_query().)
    • drupal_parse_url() 에 의해 대체되었습니다 UrlHelper::parse()

이전 Drupal 버전과 비교하여 몇 가지 중요한 변경 사항이 있습니다. 예를 들어, Url클래스에 있던 일부 메소드가 클래스에서 이동되었습니다 UrlHelper. 일부 Guzzle 클래스는 더 이상 사용되지 않습니다.


일부 API 링크가 작동하지 않습니다.
루돌프 비커

이러한 기능이 Drupal 코어에서 제거되었을 가능성이 있습니다. 죽은 링크를 확인하고 제거합니다.
키암 랄루 노

또한 일부 링크가 더 이상 유효하지 않은 것 같지만 클래스 / 함수 / 방법이 여전히 존재합니다. 링크 형식 만 변경하거나 클래스 / 함수 / 방법이 다른 파일로 이동되었습니다.
키암 랄루 노
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.