_views_query_tag_alter_condition

_views_query_tag_alter_condition(AlterableInterface $query, &$conditions, $substitutions) Replaces the substitutions recursive foreach condition. File core/modules/views/views.module, line 676 Primarily Drupal hooks and global API functions to manipulate views. Code function _views_query_tag_alter_condition(AlterableInterface $query, &$conditions, $substitutions) { foreach ($conditions as $condition_id => &$condition) { if (is_numeric($condition_id)) { if (is_string

Renderer::$controllerResolver

The controller resolver. Type: \Drupal\Core\Controller\ControllerResolverInterface File core/lib/Drupal/Core/Render/Renderer.php, line 32 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $controllerResolver;

basic_auth.module

Provides an HTTP Basic authentication provider. File core/modules/basic_auth/basic_auth.module Functions Name Description basic_auth_help Implements hook_help().

hook_entity_view_mode_info_alter

hook_entity_view_mode_info_alter(&$view_modes) Alter the view modes for entity types. Parameters array $view_modes: An array of view modes, keyed first by entity type, then by view mode name. See also \Drupal\Core\Entity\EntityManagerInterface::getAllViewModes() \Drupal\Core\Entity\EntityManagerInterface::getViewModes() Related topics Hooks Define functions that alter the behavior of Drupal core. File core/lib/Drupal/Core/Entity/entity.api.php, line 711 Hooks and documentation related t

user_modules_uninstalled

user_modules_uninstalled($modules) Implements hook_modules_uninstalled(). File core/modules/user/user.module, line 1276 Enables the user registration and login system. Code function user_modules_uninstalled($modules) { // Remove any potentially orphan module data stored for users. \Drupal::service('user.data')->delete($modules); }

SqlContentEntityStorage::getQueryServiceName

protected SqlContentEntityStorage::getQueryServiceName() Gets the name of the service for the query for this entity storage. Return value string The name of the service for the query for this entity storage. Overrides EntityStorageBase::getQueryServiceName File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 1072 Class SqlContentEntityStorage A content entity database storage implementation. Namespace Drupal\Core\Entity\Sql Code protected function getQueryServiceName

aggregator_entity_extra_field_info

aggregator_entity_extra_field_info() Implements hook_entity_extra_field_info(). File core/modules/aggregator/aggregator.module, line 83 Used to aggregate syndicated content (RSS, RDF, and Atom). Code function aggregator_entity_extra_field_info() { $extra = array(); $extra['aggregator_feed']['aggregator_feed'] = array( 'display' => array( 'items' => array( 'label' => t('Items'), 'description' => t('Items associated with this feed'), 'weight' =

ListCacheBinsPass::process

public ListCacheBinsPass::process(ContainerBuilder $container) Implements CompilerPassInterface::process(). Collects the cache bins into the cache_bins parameter. Overrides CompilerPassInterface::process File core/lib/Drupal/Core/Cache/ListCacheBinsPass.php, line 18 Class ListCacheBinsPass Adds cache_bins parameter to the container. Namespace Drupal\Core\Cache Code public function process(ContainerBuilder $container) { $cache_bins = array(); $cache_default_bin_backends = array();

AccessibleInterface::access

public AccessibleInterface::access($operation, AccountInterface $account = NULL, $return_as_object = FALSE) Checks data value access. Parameters string $operation: The operation to be performed. \Drupal\Core\Session\AccountInterface $account: (optional) The user for which to check access, or NULL to check access for the current user. Defaults to NULL. bool $return_as_object: (optional) Defaults to FALSE. Return value bool|\Drupal\Core\Access\AccessResultInterface The access result. Returns a

TermStorage::deleteTermHierarchy

public TermStorage::deleteTermHierarchy($tids) Removed reference to terms from term_hierarchy. Parameters array $tids: Array of terms that need to be removed from hierarchy. Overrides TermStorageInterface::deleteTermHierarchy File core/modules/taxonomy/src/TermStorage.php, line 96 Class TermStorage Defines a Controller class for taxonomy terms. Namespace Drupal\taxonomy Code public function deleteTermHierarchy($tids) { $this->database->delete('taxonomy_term_hierarchy') -&g