Delete

SQLite implementation of \Drupal\Core\Database\Query\Delete. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Delete implements ConditionInterface uses QueryConditionTraitclass \Drupal\Core\Database\Driver\sqlite\Delete File core/lib/Drupal/Core/Database/Driver/sqlite/Delete.php, line 10 Namespace Drupal\Core\Database\Driver\sqlite Members Name Modifiers Type Description Delete::$table protected property

Query::__construct

public Query::__construct(EntityTypeInterface $entity_type, $conjunction, array $namespaces, KeyValueFactoryInterface $key_value_factory) Constructs a new Query. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type. string $conjunction: AND: all of the conditions on the query need to match. OR: at least one of the conditions on the query need to match. array $namespaces: List of potential namespaces of the classes belonging to this query. \Drupal\Core\KeyValueSt

ContextualLinkManager::$requestStack

The request stack. Type: \Symfony\Component\HttpFoundation\RequestStack File core/lib/Drupal/Core/Menu/ContextualLinkManager.php, line 73 Class ContextualLinkManager Defines a contextual link plugin manager to deal with contextual links. Namespace Drupal\Core\Menu Code protected $requestStack;

MoreLink

Provides a link render element for a "more" link, like those used in blocks. Properties: #title: The text of the link to generate (defaults to 'More'). See \Drupal\Core\Render\Element\Link for additional properties. Usage Example: $build['more'] = [ '#type' => 'more_link', '#url' => Url::fromRoute('examples.more_examples') ] Plugin annotation @RenderElement("more_link") Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionI

comment_node_view_alter

comment_node_view_alter(array &$build, EntityInterface $node, EntityViewDisplayInterface $display) Implements hook_ENTITY_TYPE_view_alter() for node entities. File core/modules/comment/comment.module, line 237 Enables users to comment on published content. Code function comment_node_view_alter(array &$build, EntityInterface $node, EntityViewDisplayInterface $display) { if (\Drupal::moduleHandler()->moduleExists('history')) { $build['#attributes']['data-history-node-id'] = $no

LoggerChannel::setLoggers

public LoggerChannel::setLoggers(array $loggers) Sets the loggers for this channel. Parameters array $loggers: An array of arrays of \Psr\Log\LoggerInterface keyed by priority. Overrides LoggerChannelInterface::setLoggers File core/lib/Drupal/Core/Logger/LoggerChannel.php, line 159 Class LoggerChannel Defines a logger channel that most implementations will use. Namespace Drupal\Core\Logger Code public function setLoggers(array $loggers) { $this->loggers = $loggers; }

SubformState::$subform

The subform. Type: mixed[] File core/lib/Drupal/Core/Form/SubformState.php, line 26 Class SubformState Stores information about the state of a subform. Namespace Drupal\Core\Form Code protected $subform;

AggregatorController::__construct

public AggregatorController::__construct(DateFormatterInterface $date_formatter) Constructs a \Drupal\aggregator\Controller\AggregatorController object. Parameters \Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service. File core/modules/aggregator/src/Controller/AggregatorController.php, line 30 Class AggregatorController Returns responses for aggregator module routes. Namespace Drupal\aggregator\Controller Code public function __construct(DateFormat

PathBasedBreadcrumbBuilder::build

public PathBasedBreadcrumbBuilder::build(RouteMatchInterface $route_match) Builds the breadcrumb. Parameters \Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match. Return value \Drupal\Core\Breadcrumb\Breadcrumb A breadcrumb. Overrides BreadcrumbBuilderInterface::build File core/modules/system/src/PathBasedBreadcrumbBuilder.php, line 123 Class PathBasedBreadcrumbBuilder Class to define the menu_link breadcrumb builder. Namespace Drupal\system Code public func

_locale_translation_fetch_operations

_locale_translation_fetch_operations($projects, $langcodes, $options) Helper function to construct the batch operations to fetch translations. Parameters array $projects: Array of project names for which to check the state of translation files. Defaults to all translatable projects. array $langcodes: Array of language codes. Defaults to all translatable languages. array $options: Array of import options. Return value array Array of batch operations. File core/modules/locale/locale.fetch.inc,