UnmetDependenciesException::getExtension

public UnmetDependenciesException::getExtension() Gets the name of the extension that is being installed. Return value string The name of the extension that is being installed. File core/lib/Drupal/Core/Config/UnmetDependenciesException.php, line 43 Class UnmetDependenciesException An exception thrown if configuration has unmet dependencies. Namespace Drupal\Core\Config Code public function getExtension() { return $this->extension; }

ViewExecutable::unserialize

public ViewExecutable::unserialize($serialized) File core/modules/views/src/ViewExecutable.php, line 2490 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function unserialize($serialized) { list($storage, $current_display, $args, $current_page, $exposed_input, $exposed_raw_input, $exposed_data, $dom_id, $executed) = unserialize($serialized); // There are cases, like in testing, where we don't have a container // available. if (\Drupal::has

EntityDefinitionUpdateManagerInterface::DEFINITION_CREATED

Indicates that a definition has just been created. File core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php, line 49 Class EntityDefinitionUpdateManagerInterface Defines an interface for managing entity definition updates. Namespace Drupal\Core\Entity Code const DEFINITION_CREATED = 1;

ThemeRegistry::initializeRegistry

ThemeRegistry::initializeRegistry() Initializes the full theme registry. Return value An array with the keys of the full theme registry, but the values initialized to NULL. File core/lib/Drupal/Core/Utility/ThemeRegistry.php, line 84 Class ThemeRegistry Builds the run-time theme registry. Namespace Drupal\Core\Utility Code function initializeRegistry() { // @todo DIC this. $this->completeRegistry = \Drupal::service('theme.registry')->get(); return array_fill_keys(array_ke

ActiveTheme::getName

public ActiveTheme::getName() Returns the machine name of the theme. Return value string File core/lib/Drupal/Core/Theme/ActiveTheme.php, line 123 Class ActiveTheme Defines a theme and its information needed at runtime. Namespace Drupal\Core\Theme Code public function getName() { return $this->name; }

FieldStorageConfig::getColumns

public FieldStorageConfig::getColumns() Returns the field columns, as defined in the field schema. Return value array[] The array of field columns, keyed by column name, in the same format returned by getSchema(). Overrides FieldStorageDefinitionInterface::getColumns See also \Drupal\Core\Field\FieldStorageDefinitionInterface::getSchema() File core/modules/field/src/Entity/FieldStorageConfig.php, line 481 Class FieldStorageConfig Defines the Field storage configuration entity. Namespac

system-config-form.html.twig

Default theme implementation for a system settings form. This template will be used when a system config form specifies 'config_form' as its #theme callback. Otherwise, by default, system config forms will be themed by form.html.twig. This does not alter the appearance of a form at all, but is provided as a convenience for themers. Available variables: form: The confirm form. File core/modules/system/templates/system-config-form.html.twig Related topics Theme system overview Functions and

ReadOnlyStream::unlink

public ReadOnlyStream::unlink($uri) Support for unlink(). The file will not be deleted from the stream as this is a read-only stream wrapper. Parameters string $uri: A string containing the uri to the resource to delete. Return value bool TRUE so that file_delete() will remove db reference to file. File is not actually deleted. Overrides PhpStreamWrapperInterface::unlink See also http://php.net/manual/streamwrapper.unlink.php File core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php, line 1

PrivateTempStoreFactory::$storageFactory

The storage factory creating the backend to store the data. Type: \Drupal\Core\KeyValueStore\KeyValueExpirableFactoryInterface File core/modules/user/src/PrivateTempStoreFactory.php, line 20 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $storageFactory;

Checkbox::valueCallback

public static Checkbox::valueCallback(&$element, $input, FormStateInterface $form_state) Determines how user input is mapped to an element's #value property. Parameters array $element: An associative array containing the properties of the element. mixed $input: The incoming input to populate the form element. If this is FALSE, the element's default value should be returned. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value mixed The value to ass