當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DrupalKernel::rebuildContainer方法代碼示例

本文整理匯總了PHP中Drupal\Core\DrupalKernel::rebuildContainer方法的典型用法代碼示例。如果您正苦於以下問題:PHP DrupalKernel::rebuildContainer方法的具體用法?PHP DrupalKernel::rebuildContainer怎麽用?PHP DrupalKernel::rebuildContainer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Drupal\Core\DrupalKernel的用法示例。


在下文中一共展示了DrupalKernel::rebuildContainer方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: rebuildContainer

 /**
  * Rebuilds \Drupal::getContainer().
  *
  * Use this to update the test process's kernel with a new service container.
  * For example, when the list of enabled modules is changed via the internal
  * browser the test process's kernel has a service container with an out of
  * date module list.
  *
  * @see TestBase::prepareEnvironment()
  * @see TestBase::restoreEnvironment()
  *
  * @todo Fix https://www.drupal.org/node/2021959 so that module enable/disable
  *   changes are immediately reflected in \Drupal::getContainer(). Until then,
  *   tests can invoke this workaround when requiring services from newly
  *   enabled modules to be immediately available in the same request.
  */
 protected function rebuildContainer()
 {
     // Rebuild the kernel and bring it back to a fully bootstrapped state.
     $this->container = $this->kernel->rebuildContainer();
     // Make sure the url generator has a request object, otherwise calls to
     // $this->drupalGet() will fail.
     $this->prepareRequestForGenerator();
 }
開發者ID:Wylbur,項目名稱:gj,代碼行數:24,代碼來源:WebTestBase.php

示例2: rebuildContainer

 /**
  * Rebuilds \Drupal::getContainer().
  *
  * Use this to build a new kernel and service container. For example, when the
  * list of enabled modules is changed via the internal browser, in which case
  * the test process still contains an old kernel and service container with an
  * old module list.
  *
  * @see TestBase::prepareEnvironment()
  * @see TestBase::restoreEnvironment()
  *
  * @todo Fix https://www.drupal.org/node/2021959 so that module enable/disable
  *   changes are immediately reflected in \Drupal::getContainer(). Until then,
  *   tests can invoke this workaround when requiring services from newly
  *   enabled modules to be immediately available in the same request.
  */
 protected function rebuildContainer()
 {
     // Maintain the current global request object.
     $request = \Drupal::request();
     // Rebuild the kernel and bring it back to a fully bootstrapped state.
     $this->container = $this->kernel->rebuildContainer();
     // The request context is normally set by the router_listener from within
     // its KernelEvents::REQUEST listener. In the simpletest parent site this
     // event is not fired, therefore it is necessary to updated the request
     // context manually here.
     $this->container->get('router.request_context')->fromRequest($request);
     // Make sure the url generator has a request object, otherwise calls to
     // $this->drupalGet() will fail.
     $this->prepareRequestForGenerator();
 }
開發者ID:shumer,項目名稱:blog,代碼行數:31,代碼來源:WebTestBase.php


注:本文中的Drupal\Core\DrupalKernel::rebuildContainer方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。