DateFormatDeleteForm::__construct

public DateFormatDeleteForm::__construct(DateFormatterInterface $date_formatter) Constructs an DateFormatDeleteForm object. Parameters \Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service. File core/modules/system/src/Form/DateFormatDeleteForm.php, line 27 Class DateFormatDeleteForm Builds a form to delete a date format. Namespace Drupal\system\Form Code public function __construct(DateFormatterInterface $date_formatter) { $this->dateFormatter

ShortcutDeleteForm::getFormId

public ShortcutDeleteForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides EntityForm::getFormId File core/modules/shortcut/src/Form/ShortcutDeleteForm.php, line 16 Class ShortcutDeleteForm Builds the shortcut link deletion form. Namespace Drupal\shortcut\Form Code public function getFormId() { return 'shortcut_confirm_delete'; }

StreamWrapperManager::getViaScheme

public StreamWrapperManager::getViaScheme($scheme) Returns a reference to the stream wrapper class responsible for a scheme. This helper method returns a stream instance using a scheme. That is, the passed string does not contain a "://". For example, "public" is a scheme but "public://" is a URI (stream). This is because the later contains both a scheme and target despite target being empty. Note: the instance URI will be initialized to "scheme://" so that you can make the customary method cal

file_unmanaged_copy

file_unmanaged_copy($source, $destination = NULL, $replace = FILE_EXISTS_RENAME) Copies a file to a new location without database changes or hook invocation. This is a powerful function that in many ways performs like an advanced version of copy(). Checks if $source and $destination are valid and readable/writable. If file already exists in $destination either the call will error out, replace the file or rename the file based on the $replace parameter. If the $source and $destination are equal,

ModulesListConfirmForm::$moduleHandler

The module handler service. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/system/src/Form/ModulesListConfirmForm.php, line 25 Class ModulesListConfirmForm Builds a confirmation form for enabling modules with dependencies. Namespace Drupal\system\Form Code protected $moduleHandler;

NegotiationUrlForm::create

public static NegotiationUrlForm::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 servi

TwigPhpStorageCache::$templateCacheFilenamePrefix

The template cache filename prefix. Type: string File core/lib/Drupal/Core/Template/TwigPhpStorageCache.php, line 39 Class TwigPhpStorageCache Provides an alternate cache storage for Twig using PhpStorage. Namespace Drupal\Core\Template Code protected $templateCacheFilenamePrefix;

ExecutionContext::getPropertyName

public ExecutionContext::getPropertyName() File core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php, line 235 Class ExecutionContext Defines an execution context class. Namespace Drupal\Core\TypedData\Validation Code public function getPropertyName() { return $this->data->getName(); }

DataReferenceInterface::getTarget

public DataReferenceInterface::getTarget() Gets the referenced data. Return value \Drupal\Core\TypedData\TypedDataInterface|null The referenced typed data object, or NULL if the reference is unset. File core/lib/Drupal/Core/TypedData/DataReferenceInterface.php, line 18 Class DataReferenceInterface Interface for typed data references. Namespace Drupal\Core\TypedData Code public function getTarget();

PoMemoryWriter::getData

public PoMemoryWriter::getData() Get all stored PoItem's. Return value array PoItem File core/lib/Drupal/Component/Gettext/PoMemoryWriter.php, line 51 Class PoMemoryWriter Defines a Gettext PO memory writer, to be used by the installer. Namespace Drupal\Component\Gettext Code public function getData() { return $this->_items; }