INSTALL_TASK_SKIP

Do not run the task during the current installation request. This can be used to skip running an installation task when certain conditions are met, even though the task may still show on the list of installation tasks presented to the user. For example, the Drupal installer uses this flag to skip over the database configuration form when valid database connection information is already available from settings.php. It also uses this flag to skip language import tasks when the installation is bei

admin-block-content.html.twig

Default theme implementation for the content of an administrative block. Available variables: content: A list containing information about the block. Each element of the array represents an administrative menu item, and must at least contain the keys 'title', 'link_path', and 'localized_options', which are passed to l(). A 'description' key may also be provided. attributes: HTML attributes to be added to the element. compact: Boolean indicating whether compact mode is turned on or not. See

DiffOpAdd::$type

Overrides DiffOp::$type File core/lib/Drupal/Component/Diff/Engine/DiffOpAdd.php, line 11 Class DiffOpAdd @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public $type = 'add';

username.html.twig

Default theme implementation for displaying a username. Available variables: account: The full account information for the user. name: The user's name, sanitized. extra: Additional text to append to the user's name, sanitized. link_path: The path or URL of the user's profile page, home page, or other desired page to link to for more information about the user. link_options: Options to set on the \Drupal\Core\Url object if linking the user's name to the user's page. attributes: HTML attrib

SearchPage::$id

The name (plugin ID) of the search page entity. Type: string File core/modules/search/src/Entity/SearchPage.php, line 62 Class SearchPage Defines a configured search page. Namespace Drupal\search\Entity Code protected $id;

ViewExecutable::$relationship

Stores the relationship handlers which are initialized on this view. Type: \Drupal\views\Plugin\views\relationship\RelationshipPluginBase[] File core/modules/views/src/ViewExecutable.php, line 290 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $relationship;

ViewExecutable::getBaseEntityType

public ViewExecutable::getBaseEntityType() Returns the entity type of the base table, if available. Return value \Drupal\Core\Entity\EntityType|false The entity type of the base table, or FALSE if none exists. File core/modules/views/src/ViewExecutable.php, line 977 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function getBaseEntityType() { if (!isset($this->baseEntityType)) { $view_base_table = $this->storage->get('base_table');

MenuLinkBase::$overrideAllowed

The list of definition values where an override is allowed. The keys are definition names. The values are ignored. Type: array File core/lib/Drupal/Core/Menu/MenuLinkBase.php, line 22 Class MenuLinkBase Defines a base menu link class. Namespace Drupal\Core\Menu Code protected $overrideAllowed = array();

PoDatabaseReader

Gettext PO reader working with the locale module database. Hierarchy class \Drupal\locale\PoDatabaseReader implements PoReaderInterface File core/modules/locale/src/PoDatabaseReader.php, line 12 Namespace Drupal\locale Members Name Modifiers Type Description PoDatabaseReader::$langcode private property Language code of the language being read from the database. PoDatabaseReader::$options private property An associative array indicating which type of strings shoul

Variable::export

public static Variable::export($var, $prefix = '') Drupal-friendly var_export(). Parameters mixed $var: The variable to export. string $prefix: A prefix that will be added at the beginning of every lines of the output. Return value string The variable exported in a way compatible to Drupal's coding standards. File core/lib/Drupal/Component/Utility/Variable.php, line 23 Class Variable Provides helpers for dealing with variables. Namespace Drupal\Component\Utility Code public static fu