ViewsAccess::$help

A short help string; this is displayed in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsAccess.php, line 49 Class ViewsAccess Defines a Plugin annotation object for views access plugins. Namespace Drupal\views\Annotation Code public $help = '';

SelectInterface::escapeField

public SelectInterface::escapeField($string) Escapes a field name string. Force all field names to be strictly alphanumeric-plus-underscore. For some database drivers, it may also wrap the field name in database-specific escape characters. Parameters string $string: An unsanitized field name. Return value The sanitized field name string. File core/lib/Drupal/Core/Database/Query/SelectInterface.php, line 151 Class SelectInterface Interface definition for a Select Query object. Namespace

SqlContentEntityStorageSchema::requiresFieldDataMigration

public SqlContentEntityStorageSchema::requiresFieldDataMigration(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original) Checks if existing data would be lost if the schema changes were applied. If there are no schema changes needed, then no data needs to be migrated, but it is not the responsibility of this function to recheck what requiresFieldStorageSchemaChanges() checks. Rather, the meaning of what this function returns when requiresFieldStorageSchem

RouteProcessorManager::$outboundProcessors

Holds the array of outbound processors to cycle through. An array whose keys are priorities and whose values are arrays of path processor objects. Type: array File core/lib/Drupal/Core/RouteProcessor/RouteProcessorManager.php, line 23 Class RouteProcessorManager Route processor manager. Namespace Drupal\Core\RouteProcessor Code protected $outboundProcessors = array();

Condition::$category

The category under which the condition should listed in the UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/lib/Drupal/Core/Condition/Annotation/Condition.php, line 67 Class Condition Defines a condition plugin annotation object. Namespace Drupal\Core\Condition\Annotation Code public $category;

DrupalKernel::getModuleFileNames

protected DrupalKernel::getModuleFileNames() Gets the file name for each enabled module. Return value array Array where each key is a module name, and each value is a path to the respective *.info.yml file. File core/lib/Drupal/Core/DrupalKernel.php, line 1368 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected function getModuleFileNames() { $filenames = array(); foreach ($this->moduleList as $module => $weight) {

DeleteForm::$taxonomyTerm

The taxonomy term being deleted. Type: \Drupal\taxonomy\TermInterface File core/modules/forum/src/Form/DeleteForm.php, line 20 Class DeleteForm Builds the form to delete a forum term. Namespace Drupal\forum\Form Code protected $taxonomyTerm;

ViewUI::addFormToStack

public ViewUI::addFormToStack($key, $display_id, $type, $id = NULL, $top = FALSE, $rebuild_keys = FALSE) Add another form to the stack; clicking 'apply' will go to this form rather than closing the ajax popup. File core/modules/views_ui/src/ViewUI.php, line 379 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function addFormToStack($key, $display_id, $type, $id = NULL, $top = FALSE, $rebuild_keys = FALSE) { // Reset the cache of IDs. Drupal ra

BreadcrumbManager::$sortedBuilders

Holds the array of breadcrumb builders sorted by priority. Set to NULL if the array needs to be re-calculated. Type: \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface[]|null File core/lib/Drupal/Core/Breadcrumb/BreadcrumbManager.php, line 41 Class BreadcrumbManager Provides a breadcrumb manager. Namespace Drupal\Core\Breadcrumb Code protected $sortedBuilders;

BlockController::__construct

public BlockController::__construct(ThemeHandlerInterface $theme_handler) Constructs a new BlockController instance. Parameters \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler. File core/modules/block/src/Controller/BlockController.php, line 29 Class BlockController Controller routines for admin block routes. Namespace Drupal\block\Controller Code public function __construct(ThemeHandlerInterface $theme_handler) { $this->themeHandler = $theme_handle