HtmlResponseAttachmentsProcessor

Processes attachments of HTML responses. This class is used by the rendering service to process the #attached part of the render array, for HTML responses. To render attachments to HTML for testing without a controller, use the 'bare_html_page_renderer' service to generate a Drupal\Core\Render\HtmlResponse object. Then use its getContent(), getStatusCode(), and/or the headers property to access the result. Hierarchy class \Drupal\Core\Render\HtmlResponseAttachmentsProcessor implements Attachmen

DRUPAL_MINIMUM_PHP

Minimum supported version of PHP. File core/includes/bootstrap.inc, line 24 Functions that need to be loaded on every Drupal request. Code const DRUPAL_MINIMUM_PHP = '5.5.9';

PhpassHashedPassword::$ITOA64

Returns a string for mapping an int to the corresponding base 64 character. File core/lib/Drupal/Core/Password/PhpassHashedPassword.php, line 32 Class PhpassHashedPassword Secure password hashing functions based on the Portable PHP password hashing framework. Namespace Drupal\Core\Password Code public static $ITOA64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';

ConfigurableLanguage

Defines the ConfigurableLanguage entity. Plugin annotation @ConfigEntityType( id = "configurable_language", label = @Translation("Language"), handlers = { "list_builder" = "Drupal\language\LanguageListBuilder", "access" = "Drupal\language\LanguageAccessControlHandler", "form" = { "add" = "Drupal\language\Form\LanguageAddForm", "edit" = "Drupal\language\Form\LanguageEditForm", "delete" = "Drupal\language\Form\LanguageDeleteForm" } }, admin_permission =

NodeType::$description

A brief description of this node type. Type: string File core/modules/node/src/Entity/NodeType.php, line 72 Class NodeType Defines the Node type configuration entity. Namespace Drupal\node\Entity Code protected $description;

ThemeHandler::$routeBuilder

The route builder to rebuild the routes if a theme is installed. Type: \Drupal\Core\Routing\RouteBuilderInterface File core/lib/Drupal/Core/Extension/ThemeHandler.php, line 82 Class ThemeHandler Default theme handler using the config system to store installation statuses. Namespace Drupal\Core\Extension Code protected $routeBuilder;

install_display_output

install_display_output($output, $install_state) Displays themed installer output and ends the page request. Installation tasks should use #title to set the desired page title, but otherwise this function takes care of theming the overall page output during every step of the installation. Parameters $output: The content to display on the main part of the page. $install_state: An array of information about the current installation state. File core/includes/install.core.inc, line 961 API function

Connection::nextId

public Connection::nextId($existing_id = 0) Retrieves an unique ID from a given sequence. Use this function if for some reason you can't use a serial field. For example, MySQL has no ways of reading of the current value of a sequence and PostgreSQL can not advance the sequence to be larger than a given value. Or sometimes you just need a unique integer. Parameters $existing_id: (optional) After a database import, it might be that the sequences table is behind, so by passing in the maximum exis

AccessResult::cacheUntilConfigurationChanges

public AccessResult::cacheUntilConfigurationChanges(ConfigBase $configuration) Convenience method, adds the configuration object's cache tag. Parameters \Drupal\Core\Config\ConfigBase $configuration: The configuration object whose cache tag to set on the access result. Return value $this Deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use ::addCacheableDependency() instead. File core/lib/Drupal/Core/Access/AccessResult.php, line 280 Class AccessResult Value object

TranslatableMarkup::__construct

public TranslatableMarkup::__construct($string, array $arguments = array(), array $options = array(), TranslationInterface $string_translation = NULL) Constructs a new class instance. When possible, use the \Drupal\Core\StringTranslation\StringTranslationTrait $this->t(). Otherwise create a new \Drupal\Core\StringTranslation\TranslatableMarkup object directly. Calling the trait's t() method or instantiating a new TranslatableMarkup object serves two purposes: At run-time it translates user-v