ActiveLinkResponseFilter::$languageManager

The language manager. Type: \Drupal\Core\Language\LanguageManagerInterface File core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php, line 51 Class ActiveLinkResponseFilter Subscribes to filter HTML responses, to set the 'is-active' class on links. Namespace Drupal\Core\EventSubscriber Code protected $languageManager;

ActiveLinkResponseFilter::$currentUser

The current user. Type: \Drupal\Core\Session\AccountInterface File core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php, line 30 Class ActiveLinkResponseFilter Subscribes to filter HTML responses, to set the 'is-active' class on links. Namespace Drupal\Core\EventSubscriber Code protected $currentUser;

ActiveLinkResponseFilter::$currentPath

The current path. Type: \Drupal\Core\Path\CurrentPathStack File core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php, line 37 Class ActiveLinkResponseFilter Subscribes to filter HTML responses, to set the 'is-active' class on links. Namespace Drupal\Core\EventSubscriber Code protected $currentPath;

ActiveLinkResponseFilter

Subscribes to filter HTML responses, to set the 'is-active' class on links. Only for anonymous users; for authenticated users, the active-link asset library is loaded. Hierarchy class \Drupal\Core\EventSubscriber\ActiveLinkResponseFilter implements EventSubscriberInterface See also system_page_attachments() File core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php, line 23 Namespace Drupal\Core\EventSubscriber Members Name Modifiers Type Description ActiveLinkRes

action_views_form_substitutions

action_views_form_substitutions() Implements hook_views_form_substitutions(). File core/modules/action/action.views_execution.inc, line 11 Provides views runtime hooks for action.module. Code function action_views_form_substitutions() { $select_all = array( '#type' => 'checkbox', '#default_value' => FALSE, '#attributes' => array('class' => array('action-table-select-all')), ); return array( '<!--action-bulk-form-select-all-->' => drupal_render($selec

action_help

action_help($route_name, RouteMatchInterface $route_match) Implements hook_help(). File core/modules/action/action.module, line 13 This is the Actions module for executing stored actions. Code function action_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.action': $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t('The Actions module provides tasks that can be executed by the site

action_entity_type_build

action_entity_type_build(array &$entity_types) Implements hook_entity_type_build(). File core/modules/action/action.module, line 40 This is the Actions module for executing stored actions. Code function action_entity_type_build(array &$entity_types) { /** @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */ $entity_types['action'] ->setFormClass('add', 'Drupal\action\ActionAddForm') ->setFormClass('edit', 'Drupal\action\ActionEditForm') ->setFormClass

Actions::processActions

public static Actions::processActions(&$element, FormStateInterface $form_state, &$complete_form) Processes a form actions container element. Parameters array $element: An associative array containing the properties and children of the form actions container. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. array $complete_form: The complete form structure. Return value array The processed element. File core/lib/Drupal/Core/Render/Element/Actions.php, l

Actions::preRenderActionsDropbutton

public static Actions::preRenderActionsDropbutton(&$element, FormStateInterface $form_state, &$complete_form) #pre_render callback for #type 'actions'. This callback iterates over all child elements of the #type 'actions' container to look for elements with a #dropbutton property, so as to group those elements into dropbuttons. As such, it works similar to #group, but is specialized for dropbuttons. The value of #dropbutton denotes the dropbutton to group the child element into. For exa

Actions::getInfo

public Actions::getInfo() Returns the element properties for this element. Return value array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format. Overrides Container::getInfo File core/lib/Drupal/Core/Render/Element/Actions.php, line 31 Class Actions Provides a wrapper element to group one or more buttons in a form. Namespace Drupal\Core\Render\Element