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

Theme

Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php. Hierarchy class \Drupal\Core\Updater\Updaterclass \Drupal\Core\Updater\Theme implements UpdaterInterface File core/lib/Drupal/Core/Updater/Theme.php, line 11 Namespace Drupal\Core\Updater Members Name Modifiers Type Description Theme::canUpdate public static function Determines whether this class can update the specified project. Theme::canUpdateDirectory stati

Container::hasParameter

public Container::hasParameter($name) File core/lib/Drupal/Component/DependencyInjection/Container.php, line 397 Class Container Provides a container optimized for Drupal's needs. Namespace Drupal\Component\DependencyInjection Code public function hasParameter($name) { return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters); }

EntityDisplayFormBase::multistepSubmit

public EntityDisplayFormBase::multistepSubmit($form, FormStateInterface $form_state) Form submission handler for multistep buttons. File core/modules/field_ui/src/Form/EntityDisplayFormBase.php, line 594 Class EntityDisplayFormBase Base class for EntityDisplay edit forms. Namespace Drupal\field_ui\Form Code public function multistepSubmit($form, FormStateInterface $form_state) { $trigger = $form_state->getTriggeringElement(); $op = $trigger['#op']; switch ($op) { case 'ed

ThemeHandler::doGetBaseThemes

protected ThemeHandler::doGetBaseThemes(array $themes, $theme, $used_themes = array()) Finds the base themes for the specific theme. Parameters array $themes: An array of available themes. string $theme: The name of the theme whose base we are looking for. array $used_themes: (optional) A recursion parameter preventing endless loops. Defaults to an empty array. Return value array An array of base themes. File core/lib/Drupal/Core/Extension/ThemeHandler.php, line 385 Class ThemeHandler De

SharedTempStore::$requestStack

The request stack. Type: \Symfony\Component\HttpFoundation\RequestStack File core/modules/user/src/SharedTempStore.php, line 59 Class SharedTempStore Stores and retrieves temporary data for a given owner. Namespace Drupal\user Code protected $requestStack;

Truncate::__toString

public Truncate::__toString() Implements PHP magic __toString method to convert the query to a string. Return value string The prepared statement. Overrides Query::__toString File core/lib/Drupal/Core/Database/Query/Truncate.php, line 67 Class Truncate General class for an abstracted TRUNCATE operation. Namespace Drupal\Core\Database\Query Code public function __toString() { // Create a sanitized comment string to prepend to the query. $comments = $this->connection->makeComm

EntityDisplayRepository

Provides a repository for entity display objects (view modes and form modes). Hierarchy class \Drupal\Core\Entity\EntityDisplayRepository implements EntityDisplayRepositoryInterface uses UseCacheBackendTrait, StringTranslationTrait File core/lib/Drupal/Core/Entity/EntityDisplayRepository.php, line 15 Namespace Drupal\Core\Entity Members Name Modifiers Type Description EntityDisplayRepository::$displayModeInfo protected property Static cache of display modes information.

ViewExecutable::$build_sort

Indicates if the sorts have been built. @todo Group with other static properties. Type: bool File core/modules/views/src/ViewExecutable.php, line 368 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $build_sort;

FormAjaxResponseBuilder::buildResponse

public FormAjaxResponseBuilder::buildResponse(Request $request, array $form, FormStateInterface $form_state, array $commands) Builds a response for an AJAX form. Parameters \Symfony\Component\HttpFoundation\Request $request: The current request. array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. array $commands: An array of AJAX commands to apply to the form. Return value \Drupal\Core\Ajax\Aj