SystemInfoController::create

public static SystemInfoController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The ser

NegotiationBrowserForm::buildForm

public NegotiationBrowserForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides ConfigFormBase::buildForm File core/modules/language/src/Form/NegotiationBrowserForm.php, line 62 Class NegotiationBrowserForm Configure the browser language negotiation metho

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

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

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

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; }

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

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;

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

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; }