InstallerException::getTitle

public InstallerException::getTitle() Returns the exception page title. Return value string File core/lib/Drupal/Core/Installer/Exception/InstallerException.php, line 42 Class InstallerException Base class for exceptions thrown by installer. Namespace Drupal\Core\Installer\Exception Code public function getTitle() { return $this->title; }

InstallerException::$title

The page title to output. Type: string File core/lib/Drupal/Core/Installer/Exception/InstallerException.php, line 18 Class InstallerException Base class for exceptions thrown by installer. Namespace Drupal\Core\Installer\Exception Code protected $title;

InstallerException

Base class for exceptions thrown by installer. Hierarchy class \Drupal\Core\Installer\Exception\InstallerException extends \RuntimeException uses StringTranslationTrait File core/lib/Drupal/Core/Installer/Exception/InstallerException.php, line 10 Namespace Drupal\Core\Installer\Exception Members Name Modifiers Type Description InstallerException::$title protected property The page title to output. InstallerException::getTitle public function Returns the exception

install.inc

API functions for installing modules and themes. File core/includes/install.inc Functions Name Description db_installer_object Returns a database installer object. drupal_check_module Checks a module's requirements. drupal_check_profile Checks an installation profile's requirements. drupal_current_script_url Returns the URL of the current script, with modified query parameters. drupal_detect_database_types Detects all supported databases that are compiled into PHP. d

install.core.inc

API functions for installing Drupal. File core/includes/install.core.inc Functions Name Description install_base_system Installation task; install the base functionality Drupal needs to bootstrap. install_begin_request Begins an installation request, modifying the installation state as needed. install_bootstrap_full Performs a full bootstrap of Drupal during installation. install_check_localization_server Checks if the localization server can be contacted. install_check_

install-page.html.twig

Default theme implementation to display a Drupal installation page. All available variables are mirrored in page.html.twig. Some may be blank but they are provided for consistency. See also template_preprocess_install_page() File core/modules/system/templates/install-page.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

InsertTrait::values

public InsertTrait::values(array $values) Adds another set of values to the query to be inserted. If $values is a numeric-keyed array, it will be assumed to be in the same order as the original fields() call. If it is associative, it may be in any order as long as the keys of the array match the names of the fields. Parameters array $values: An array of values to add to the query. Return value $this The called object. File core/lib/Drupal/Core/Database/Query/InsertTrait.php, line 101 Class

InsertTrait::useDefaults

public InsertTrait::useDefaults(array $fields) Specifies fields for which the database defaults should be used. If you want to force a given field to use the database-defined default, not NULL or undefined, use this method to instruct the database to use default values explicitly. In most cases this will not be necessary unless you are inserting a row that is all default values, as you cannot specify no values in an INSERT query. Specifying a field both in fields() and in useDefaults() is an er

InsertTrait::getInsertPlaceholderFragment

protected InsertTrait::getInsertPlaceholderFragment(array $nested_insert_values, array $default_fields) Returns the query placeholders for values that will be inserted. Parameters array $nested_insert_values: A nested array of values to insert. array $default_fields: An array of fields that should be set to their database-defined defaults. Return value array An array of insert placeholders. File core/lib/Drupal/Core/Database/Query/InsertTrait.php, line 151 Class InsertTrait Provides comm

InsertTrait::fields

public InsertTrait::fields(array $fields, array $values = array()) Adds a set of field->value pairs to be inserted. This method may only be called once. Calling it a second time will be ignored. To queue up multiple sets of values to be inserted at once, use the values() method. Parameters array $fields: An array of fields on which to insert. This array may be indexed or associative. If indexed, the array is taken to be the list of fields. If associative, the keys of the array are taken to