FileTransferException

FileTransferException class. Hierarchy class \Drupal\Core\FileTransfer\FileTransferException extends \RuntimeException File core/lib/Drupal/Core/FileTransfer/FileTransferException.php, line 8 Namespace Drupal\Core\FileTransfer Members Name Modifiers Type Description FileTransferException::$arguments public property Arguments to be used in this exception. FileTransferException::__construct function Constructs a FileTransferException object.

ViewUI::getOriginalId

public ViewUI::getOriginalId() Gets the original ID. Return value int|string|null The original ID, or NULL if no ID was set or for entity types that do not support renames. Overrides EntityInterface::getOriginalId File core/modules/views_ui/src/ViewUI.php, line 1076 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getOriginalId() { return $this->storage->getOriginalId(); }

RouteProcessorCurrent::processOutbound

public RouteProcessorCurrent::processOutbound($route_name, Route $route, array &$parameters, BubbleableMetadata $bubbleable_metadata = NULL) Processes the outbound route. Parameters string $route_name: The route name. \Symfony\Component\Routing\Route $route: The outbound route to process. array $parameters: An array of parameters to be passed to the route compiler. Passed by reference. \Drupal\Core\Render\BubbleableMetadata $bubbleable_metadata: (optional) Object to collect route processor

ConfigImportForm::buildForm

public ConfigImportForm::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 FormInterface::buildForm File core/modules/config/src/Form/ConfigImportForm.php, line 52 Class ConfigImportForm Defines the configuration import form. Namespace Drupal\config\For

ContactForm::$reply

An auto-reply message. Type: string File core/modules/contact/src/Entity/ContactForm.php, line 90 Class ContactForm Defines the contact form entity. Namespace Drupal\contact\Entity Code protected $reply = '';

PhpSerialize::decode

public static PhpSerialize::decode($raw) Decodes data from the serialization format. Parameters string $raw: The raw data string to decode. Return value mixed The decoded data. Overrides SerializationInterface::decode File core/lib/Drupal/Component/Serialization/PhpSerialize.php, line 20 Class PhpSerialize Default serialization for serialized PHP. Namespace Drupal\Component\Serialization Code public static function decode($raw) { return unserialize($raw); }

Html::decodeEntities

public static Html::decodeEntities($text) Decodes all HTML entities including numerical ones to regular UTF-8 bytes. Double-escaped entities will only be decoded once ("&amp;lt;" becomes "&lt;", not "<"). Be careful when using this function, as it will revert previous sanitization efforts (&lt;script&gt; will become <script>). This method is not the opposite of Html::escape(). For example, this method will convert "&eacute;" to "é", whereas Html::escape() will not c

ModulesListExperimentalConfirmForm::getQuestion

public ModulesListExperimentalConfirmForm::getQuestion() Returns the question to ask the user. Return value string The form question. The page title will be set to this value. Overrides ModulesListConfirmForm::getQuestion File core/modules/system/src/Form/ModulesListExperimentalConfirmForm.php, line 13 Class ModulesListExperimentalConfirmForm Builds a confirmation form for enabling experimental modules. Namespace Drupal\system\Form Code public function getQuestion() { return $this-&

InvalidLibrariesExtendSpecificationException

Defines a custom exception for an invalid libraries-extend specification. Hierarchy class \Drupal\Core\Asset\Exception\InvalidLibrariesExtendSpecificationException extends \RuntimeException File core/lib/Drupal/Core/Asset/Exception/InvalidLibrariesExtendSpecificationException.php, line 8 Namespace Drupal\Core\Asset\Exception Members

book_entity_type_build

book_entity_type_build(array &$entity_types) Implements hook_entity_type_build(). File core/modules/book/book.module, line 80 Allows users to create and organize related content in an outline. Code function book_entity_type_build(array &$entity_types) { /** @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */ $entity_types['node'] ->setFormClass('book_outline', 'Drupal\book\Form\BookOutlineForm') ->setLinkTemplate('book-outline-form', '/node/{node}/outline')