FileTransfer::getSettingsForm

public FileTransfer::getSettingsForm() Returns a form to collect connection settings credentials. Implementing classes can either extend this form with fields collecting the specific information they need, or override it entirely. Return value array An array that contains a Form API definition. File core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 390 Class FileTransfer Defines the base FileTransfer class. Namespace Drupal\Core\FileTransfer Code public function getSettingsForm

UserController::__construct

public UserController::__construct(DateFormatterInterface $date_formatter, UserStorageInterface $user_storage, UserDataInterface $user_data, LoggerInterface $logger) Constructs a UserController object. Parameters \Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service. \Drupal\user\UserStorageInterface $user_storage: The user storage. \Drupal\user\UserDataInterface $user_data: The user data service. \Psr\Log\LoggerInterface $logger: A logger instance. File core

ConfigurableLanguageManager::$initializing

Whether already in the process of language initialization. Type: bool File core/modules/language/src/ConfigurableLanguageManager.php, line 97 Class ConfigurableLanguageManager Overrides default LanguageManager to provide configured languages. Namespace Drupal\language Code protected $initializing = FALSE;

Connection::getDriverClass

public Connection::getDriverClass($class) Gets the driver-specific override class if any for the specified class. Parameters string $class: The class for which we want the potentially driver-specific class. Return value string The name of the class that should be used for this driver. File core/lib/Drupal/Core/Database/Connection.php, line 754 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getDriverClass($class) { if (empty($this->d

ActionAdminManageForm

Provides a configuration form for configurable actions. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\action\Form\ActionAdminManageForm File core/modules/action/src/Form/ActionAdminManageForm.php, line 14 Namespace Drupal\action\Form Members Name Modifiers Type Description

SCHEMA_UNINSTALLED

Indicates that a module has not been installed yet. Related topics Schema API API to handle database schemas. File core/includes/schema.inc, line 16 Schema API handling functions. Code const SCHEMA_UNINSTALLED = -1;

tablesort_get_order

tablesort_get_order($headers) Determines the current sort criterion. Parameters $headers: An array of column headers in the format described in '#type' => 'table'. Return value An associative array describing the criterion, containing the keys: "name": The localized title of the table column. "sql": The name of the database field to sort on. File core/includes/tablesort.inc, line 97 Functions to aid in the creation of sortable tables. Code function tablesort_get_order($headers) { $

drupal_load_updates

drupal_load_updates() Loads .install files for installed modules to initialize the update system. File core/includes/install.inc, line 79 API functions for installing modules and themes. Code function drupal_load_updates() { foreach (drupal_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) { if ($schema_version > -1) { module_load_install($module); } } }

Link

Defines an object that holds information about a link. Hierarchy class \Drupal\Core\Link implements RenderableInterface uses LinkGeneratorTrait File core/lib/Drupal/Core/Link.php, line 11 Namespace Drupal\Core Members Name Modifiers Type Description Link::$text protected property The text of the link. Link::$url protected property The URL of the link. Link::createFromRoute public static function Creates a Link object from a given route name and parameters

Drupal::currentUser

public static Drupal::currentUser() Gets the current active user. Return value \Drupal\Core\Session\AccountProxyInterface File core/lib/Drupal.php, line 246 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function currentUser() { return static::getContainer()->get('current_user'); }