当前位置: 首页>>代码示例>>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;未经允许,请勿转载。