UnmetDependenciesException::getConfigObjects

public UnmetDependenciesException::getConfigObjects() Gets the list of configuration objects that have unmet dependencies. Return value array A list of configuration objects that have unmet dependencies. File core/lib/Drupal/Core/Config/UnmetDependenciesException.php, line 33 Class UnmetDependenciesException An exception thrown if configuration has unmet dependencies. Namespace Drupal\Core\Config Code public function getConfigObjects() { return $this->configObjects; }

PageCache::getCacheId

protected PageCache::getCacheId(Request $request) Gets the page cache ID for this request. Parameters \Symfony\Component\HttpFoundation\Request $request: A request object. Return value string The cache ID for this request. File core/modules/page_cache/src/StackMiddleware/PageCache.php, line 342 Class PageCache Executes the page caching before the main kernel takes over the request. Namespace Drupal\page_cache\StackMiddleware Code protected function getCacheId(Request $request) { $c

pager_get_query_parameters

pager_get_query_parameters() Compose a URL query parameter array for pager links. Return value array A URL query parameter array that consists of all components of the current page request except for those pertaining to paging. File core/includes/pager.inc, line 147 Functions to aid in presenting database results as a set of pages. Code function pager_get_query_parameters() { $query = &drupal_static(__FUNCTION__); if (!isset($query)) { $query = UrlHelper::filterQueryParameters(\D

UnmetDependenciesException::create

public static UnmetDependenciesException::create($extension, array $config_objects) Creates an exception for an extension and a list of configuration objects. Parameters $extension: The name of the extension that is being installed. array $config_objects: A list of configuration object names that have unmet dependencies Return value \Drupal\Core\Config\PreExistingConfigException File core/lib/Drupal/Core/Config/UnmetDependenciesException.php, line 77 Class UnmetDependenciesException An e

NoSessionOpen

A policy allowing delivery of cached pages when there is no session open. Do not serve cached pages to authenticated users, or to anonymous users when $_SESSION is non-empty. $_SESSION may contain status messages from a form submission, the contents of a shopping cart, or other userspecific content that should not be cached and displayed to other users. Hierarchy class \Drupal\Core\PageCache\RequestPolicy\NoSessionOpen implements RequestPolicyInterface File core/lib/Drupal/Core/PageCache/Req

forum_entity_bundle_info_alter

forum_entity_bundle_info_alter(&$bundles) Implements hook_entity_bundle_info_alter(). File core/modules/forum/forum.module, line 120 Provides discussion forums. Code function forum_entity_bundle_info_alter(&$bundles) { // Take over URI construction for taxonomy terms that are forums. if ($vid = \Drupal::config('forum.settings')->get('vocabulary')) { if (isset($bundles['taxonomy_term'][$vid])) { $bundles['taxonomy_term'][$vid]['uri_callback'] = 'forum_uri'; } } }

ChainResponsePolicy

Implements a compound response policy. When evaluating the compound policy, all of the contained rules are applied to the response. The overall result is computed according to the following rules: <ol> <li>Returns static::DENY if any of the rules evaluated to static::DENY</li> <li>Otherwise returns NULL</li> </ol> Hierarchy class \Drupal\Core\PageCache\ChainResponsePolicy implements ChainResponsePolicyInterface File core/lib/Drupal/Core/PageCache/ChainResp

UpdateManager::$keyValueStore

The key/value store. Type: \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface File core/modules/update/src/UpdateManager.php, line 54 Class UpdateManager Default implementation of UpdateManagerInterface. Namespace Drupal\update Code protected $keyValueStore;

ProxyBuilder

Extend the component proxy builder by using the DependencySerialziationTrait. Hierarchy class \Drupal\Component\ProxyBuilder\ProxyBuilderclass \Drupal\Core\ProxyBuilder\ProxyBuilder File core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php, line 10 Namespace Drupal\Core\ProxyBuilder Members Name Modifiers Type Description ProxyBuilder::build public function Builds a proxy class string. ProxyBuilder::buildConstructorMethod protected function Builds the constructor

FormAjaxResponseBuilderInterface

Provides an interface for building AJAX form responses. Hierarchy interface \Drupal\Core\Form\FormAjaxResponseBuilderInterface File core/lib/Drupal/Core/Form/FormAjaxResponseBuilderInterface.php, line 10 Namespace Drupal\Core\Form Members Name Modifiers Type Description FormAjaxResponseBuilderInterface::buildResponse public function Builds a response for an AJAX form.