Extension::$root

The app root. Type: string File core/lib/Drupal/Core/Extension/Extension.php, line 45 Class Extension Defines an extension (file) object. Namespace Drupal\Core\Extension Code protected $root;

OpenDialogCommand::$content

The content for the dialog. Either a render array or an HTML string. Type: string|array File core/lib/Drupal/Core/Ajax/OpenDialogCommand.php, line 37 Class OpenDialogCommand Defines an AJAX command to open certain content in a dialog. Namespace Drupal\Core\Ajax Code protected $content;

file_scan_directory

file_scan_directory($dir, $mask, $options = array(), $depth = 0) Finds all files that match a given mask in a given directory. Directories and files beginning with a dot are excluded; this prevents hidden files and directories (such as SVN working directories) from being scanned. Use the umask option to skip configuration directories to eliminate the possibility of accidentally exposing configuration information. Also, you can use the base directory, recurse, and min_depth options to improve pe

StorageComparer::$sourceStorages

The source storages keyed by collection. Type: \Drupal\Core\Config\StorageInterface[] File core/lib/Drupal/Core/Config/StorageComparer.php, line 27 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $sourceStorages;

ContentEntityBase::$fields

The array of fields, each being an instance of FieldItemListInterface. Type: array File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 56 Class ContentEntityBase Implements Entity Field API specific enhancements to the Entity class. Namespace Drupal\Core\Entity Code protected $fields = array();

FieldConfigListBuilder::$targetBundle

The name of the bundle the listed fields are attached to. Type: string File core/modules/field_ui/src/FieldConfigListBuilder.php, line 32 Class FieldConfigListBuilder Provides lists of field config entities. Namespace Drupal\field_ui Code protected $targetBundle;

Select::$range

The range limiters for this query. Type: array File core/lib/Drupal/Core/Database/Query/Select.php, line 94 Class Select Query builder for SELECT statements. Namespace Drupal\Core\Database\Query Code protected $range;

BlockAccessControlHandler

Defines the access control handler for the block entity type. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityAccessControlHandler implements EntityAccessControlHandlerInterfaceclass \Drupal\block\BlockAccessControlHandler implements EntityHandlerInterface uses ConditionAccessResolverTrait See also \Drupal\block\Entity\Block File core/modules/block/src/BlockAccessControlHandler.php, line 26 N

FieldConfigListBuilder::__construct

public FieldConfigListBuilder::__construct(EntityTypeInterface $entity_type, EntityManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_manager) Constructs a new class instance. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. \Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_manager: The field type manager Overrides EntityListBuilder

ConfigImporter::alreadyImporting

public ConfigImporter::alreadyImporting() Determines if a import is already running. Return value bool TRUE if an import is already running, FALSE if not. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 1028 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code public function alreadyImporting() { return !$this->lock->lockMayBeAvailable(static::LOCK_NAME); }