FieldStorageConfigStorage

Controller class for "field storage" configuration entities. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityStorageBase implements EntityHandlerInterface, EntityStorageInterfaceclass \Drupal\Core\Config\Entity\ConfigEntityStorage implements ConfigEntityStorageInterface, ImportableEntityStorageInterfaceclass \Drupal\field\FieldStorageConfigStorage File core/modules/field/src/FieldStorageConfigSt

InstallStorage::$directory

The directory to scan in each extension to scan for files. Type: string Overrides FileStorage::$directory File core/lib/Drupal/Core/Config/InstallStorage.php, line 48 Class InstallStorage Storage used by the Drupal installer. Namespace Drupal\Core\Config Code protected $directory;

ThemeInstallerInterface

Manages theme installation/uninstallation. Hierarchy interface \Drupal\Core\Extension\ThemeInstallerInterface File core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php, line 8 Namespace Drupal\Core\Extension Members Name Modifiers Type Description ThemeInstallerInterface::install public function Installs a given list of themes. ThemeInstallerInterface::uninstall public function Uninstalls a given list of themes.

ScrollTopCommand::render

public ScrollTopCommand::render() Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render File core/modules/views/src/Ajax/ScrollTopCommand.php, line 34 Class ScrollTopCommand Provides an AJAX command for scrolling to the top of an element. Namespace Drupal\views\Ajax Code public function render() { return array( 'command' => 'viewsScrollTop', 'selector' => $this->selector, ); }

OverviewTerms::$storageController

The term storage handler. Type: \Drupal\taxonomy\TermStorageInterface File core/modules/taxonomy/src/Form/OverviewTerms.php, line 29 Class OverviewTerms Provides terms overview form for a taxonomy vocabulary. Namespace Drupal\taxonomy\Form Code protected $storageController;

ActionFormBase::exists

public ActionFormBase::exists($id) Determines if the action already exists. Parameters string $id: The action ID Return value bool TRUE if the action exists, FALSE otherwise. File core/modules/action/src/ActionFormBase.php, line 104 Class ActionFormBase Provides a base form for action forms. Namespace Drupal\action Code public function exists($id) { $action = $this->storage->load($id); return !empty($action); }

EntityDisplayBase::getTargetBundle

public EntityDisplayBase::getTargetBundle() Gets the bundle to be displayed. Return value string The bundle to be displayed. Overrides EntityDisplayInterface::getTargetBundle File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 219 Class EntityDisplayBase Provides a common base class for entity view and form displays. Namespace Drupal\Core\Entity Code public function getTargetBundle() { return $this->bundle; }

PoStreamReader::$_current_item

Current entry being read. Incomplete. Type: array File core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 42 Class PoStreamReader Implements Gettext PO stream reader. Namespace Drupal\Component\Gettext Code private $_current_item = array();

FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionCreate

public FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionCreate(FieldStorageDefinitionInterface $storage_definition) Reacts to the creation of a field storage definition. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The definition being created. File core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php, line 16 Class FieldStorageDefinitionListenerInterface Defines an interface for reacting to field storage definition c

FormStateInterface::setRequestMethod

public FormStateInterface::setRequestMethod($method) Sets the HTTP method used by the request that is building the form. Parameters string $method: Can be any valid HTTP method, such as GET, POST, HEAD, etc. Return value $this See also \Drupal\Core\Form\FormStateInterface::setMethod() File core/lib/Drupal/Core/Form/FormStateInterface.php, line 778 Class FormStateInterface Provides an interface for an object containing the current state of a form. Namespace Drupal\Core\Form Code publ