StatementInterface::fetch

public StatementInterface::fetch($mode = NULL, $cursor_orientation = NULL, $cursor_offset = NULL) Fetches the next row from a result set. See http://php.net/manual/pdo.constants.php for the definition of the constants used. Parameters $mode: One of the PDO::FETCH_* constants. Default to what was specified by setFetchMode(). $cursor_orientation: Not implemented in all database drivers, don't use. $cursor_offset: Not implemented in all database drivers, don't use. Return value A result, formatt

NoSessionOpen

A policy allowing delivery of cached pages when there is no session open. Do not serve cached pages to authenticated users, or to anonymous users when $_SESSION is non-empty. $_SESSION may contain status messages from a form submission, the contents of a shopping cart, or other userspecific content that should not be cached and displayed to other users. Hierarchy class \Drupal\Core\PageCache\RequestPolicy\NoSessionOpen implements RequestPolicyInterface File core/lib/Drupal/Core/PageCache/Req

LoggerChannel::setCurrentUser

public LoggerChannel::setCurrentUser(AccountInterface $current_user = NULL) Sets the current user. Parameters \Drupal\Core\Session\AccountInterface|null $current_user: The current user object. Overrides LoggerChannelInterface::setCurrentUser File core/lib/Drupal/Core/Logger/LoggerChannel.php, line 152 Class LoggerChannel Defines a logger channel that most implementations will use. Namespace Drupal\Core\Logger Code public function setCurrentUser(AccountInterface $current_user = NULL) {

Tasks

Specifies installation tasks for PostgreSQL databases. Hierarchy class \Drupal\Core\Database\Install\Tasksclass \Drupal\Core\Database\Driver\pgsql\Install\Tasks File core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php, line 13 Namespace Drupal\Core\Database\Driver\pgsql\Install Members Name Modifiers Type Description Tasks::$pdoDriver protected property The name of the PDO driver this database type requires. Overrides Tasks::$pdoDriver Tasks::$results prote

DateTimePlus::__callStatic

public static DateTimePlus::__callStatic($method, $args) Implements the magic __callStatic method. Passes through all unknown static calls onto the DateTime object. File core/lib/Drupal/Component/Datetime/DateTimePlus.php, line 344 Class DateTimePlus Wraps DateTime(). Namespace Drupal\Component\Datetime Code public static function __callStatic($method, $args) { if (!method_exists('\DateTime', $method)) { throw new \BadMethodCallException(sprintf('Call to undefined method %s::%s()

Language::getWeight

public Language::getWeight() Gets the weight of the language. Return value int The weight, used to order languages with larger positive weights sinking items toward the bottom of lists. Overrides LanguageInterface::getWeight File core/lib/Drupal/Core/Language/Language.php, line 122 Class Language An object containing the information for an interface language. Namespace Drupal\Core\Language Code public function getWeight() { return $this->weight; }

LanguageDefault::__construct

public LanguageDefault::__construct(array $values) Constructs the default language object. Parameters array $values: The properties used to construct the default language. File core/lib/Drupal/Core/Language/LanguageDefault.php, line 30 Class LanguageDefault Provides a simple get and set wrapper to the default language object. Namespace Drupal\Core\Language Code public function __construct(array $values) { $this->set(new Language($values)); }

SwitchShortcutSet::checkAccess

public SwitchShortcutSet::checkAccess(UserInterface $user = NULL) Checks access for the shortcut set switch form. Parameters \Drupal\user\UserInterface $user: (optional) The owner of the shortcut set. Return value \Drupal\Core\Access\AccessResultInterface The access result. File core/modules/shortcut/src/Form/SwitchShortcutSet.php, line 223 Class SwitchShortcutSet Builds the shortcut set switch form. Namespace Drupal\shortcut\Form Code public function checkAccess(UserInterface $user

EditForm

Provides the path edit form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\path\Form\PathFormBaseclass \Drupal\path\Form\EditForm File core/modules/path/src/Form/EditForm.php, line 11 Namespace Drupal\path\Form Members Name Modifiers Type Description DependencySerializati

ActionFormBase::$storage

The action storage. Type: \Drupal\Core\Entity\EntityStorageInterface File core/modules/action/src/ActionFormBase.php, line 28 Class ActionFormBase Provides a base form for action forms. Namespace Drupal\action Code protected $storage;