ViewExecutable::$feedIcons

Feed icons attached to the view. Type: array File core/modules/views/src/ViewExecutable.php, line 129 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $feedIcons = array();

Annotations

Annotations for class discovery and metadata description. The Drupal plugin system has a set of reusable components that developers can use, override, and extend in their modules. Most of the plugins use annotations, which let classes register themselves as plugins and describe their metadata. (Annotations can also be used for other purposes, though at the moment, Drupal only uses them for the plugin system.) To annotate a class as a plugin, add code similar to the following to the end of the d

ConfigurableLanguageManager::getStandardLanguageListWithoutConfigured

public ConfigurableLanguageManager::getStandardLanguageListWithoutConfigured() Returns the standard language list excluding already configured languages. Return value array A list of standard language names keyed by langcode. Overrides ConfigurableLanguageManagerInterface::getStandardLanguageListWithoutConfigured File core/modules/language/src/ConfigurableLanguageManager.php, line 460 Class ConfigurableLanguageManager Overrides default LanguageManager to provide configured languages. Na

update_build_dependency_graph

update_build_dependency_graph($update_functions) Constructs a graph which encodes the dependencies between module updates. This function returns an associative array which contains a "directed graph" representation of the dependencies between a provided list of update functions, as well as any outside update functions that they directly depend on but that were not in the provided list. The vertices of the graph represent the update functions themselves, and each edge represents a requirement th

template_preprocess_views_view_summary_unformatted

template_preprocess_views_view_summary_unformatted(&$variables) Prepares variables for unformatted summary view templates. Default template: views-view-summary-unformatted.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. options: An array of options. Each option contains: separator: A string to be placed between inline fields to keep them visually distinct. File core/modules/views/views.theme.inc, line 32

LanguageFormBase::validateCommon

public LanguageFormBase::validateCommon(array $form, FormStateInterface $form_state) Validates the language editing element. File core/modules/language/src/Form/LanguageFormBase.php, line 96 Class LanguageFormBase Base form for language add and edit forms. Namespace Drupal\language\Form Code public function validateCommon(array $form, FormStateInterface $form_state) { // Ensure sane field values for langcode and name. if (!isset($form['langcode_view']) && !preg_match('@^[a-

View::$module

The module implementing this view. Type: string File core/modules/views/src/Entity/View.php, line 115 Class View Defines a View configuration entity class. Namespace Drupal\views\Entity Code protected $module = 'views';

forum_comment_update

forum_comment_update(CommentInterface $comment) Implements hook_ENTITY_TYPE_update() for comment entities. File core/modules/forum/forum.module, line 261 Provides discussion forums. Code function forum_comment_update(CommentInterface $comment) { if ($comment->getCommentedEntityTypeId() == 'node') { \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity()); } }

ActionFormBase::submitForm

public ActionFormBase::submitForm(array &$form, FormStateInterface $form_state) This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state can be updated, this way the subsequently invoked handlers can retrieve a regular entity object to act on. Generally this method should not be overridden unless th

PathProcessorLanguage::initProcessors

protected PathProcessorLanguage::initProcessors($scope) Initializes the local cache for language path processors. Parameters string $scope: The scope of the processors: "inbound" or "outbound". File core/modules/language/src/HttpKernel/PathProcessorLanguage.php, line 132 Class PathProcessorLanguage Processes the inbound path using path alias lookups. Namespace Drupal\language\HttpKernel Code protected function initProcessors($scope) { $interface = '\Drupal\Core\PathProcessor\\' . Un