Insert::execute

public Insert::execute() Executes the insert query. Return value The last insert ID of the query, if one exists. If the query was given multiple sets of values to insert, the return value is undefined. If no fields are specified, this method will do nothing and return NULL. That That makes it safe to use in multi-insert loops. Overrides Insert::execute File core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php, line 16 Class Insert SQLite implementation of \Drupal\Core\Database\Query\Ins

Insert::execute

public Insert::execute() Executes the insert query. Return value The last insert ID of the query, if one exists. If the query was given multiple sets of values to insert, the return value is undefined. If no fields are specified, this method will do nothing and return NULL. That That makes it safe to use in multi-insert loops. Overrides Insert::execute File core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php, line 18 Class Insert PostgreSQL implementation of \Drupal\Core\Database\Query\

Insert::execute

public Insert::execute() Executes the insert query. Return value The last insert ID of the query, if one exists. If the query was given multiple sets of values to insert, the return value is undefined. If no fields are specified, this method will do nothing and return NULL. That That makes it safe to use in multi-insert loops. Overrides Query::execute File core/lib/Drupal/Core/Database/Query/Insert.php, line 64 Class Insert General class for an abstracted INSERT query. Namespace Drupal

Insert::$fromQuery

A SelectQuery object to fetch the rows that should be inserted. Type: \Drupal\Core\Database\Query\SelectInterface File core/lib/Drupal/Core/Database/Query/Insert.php, line 21 Class Insert General class for an abstracted INSERT query. Namespace Drupal\Core\Database\Query Code protected $fromQuery;

Insert

SQLite implementation of \Drupal\Core\Database\Query\Insert. We ignore all the default fields and use the clever SQLite syntax: INSERT INTO table DEFAULT VALUES for degenerated "default only" queries. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Insert implements \Countable uses InsertTraitclass \Drupal\Core\Database\Driver\sqlite\Insert File core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php, line 14 Namespace D

Insert

MySQL implementation of \Drupal\Core\Database\Query\Insert. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Insert implements \Countable uses InsertTraitclass \Drupal\Core\Database\Driver\mysql\Insert File core/lib/Drupal/Core/Database/Driver/mysql/Insert.php, line 10 Namespace Drupal\Core\Database\Driver\mysql Members Name Modifiers Type Description Insert::$fromQuery protected property A SelectQuery o

Insert

PostgreSQL implementation of \Drupal\Core\Database\Query\Insert. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Insert implements \Countable uses InsertTraitclass \Drupal\Core\Database\Driver\pgsql\Insert Related topics Database abstraction layer Allow the use of different database servers using the same code base. File core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php, line 16 Namespace Drupal\Core\Database\Driv

Insert

General class for an abstracted INSERT query. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Insert implements \Countable uses InsertTrait Related topics Database abstraction layer Allow the use of different database servers using the same code base. File core/lib/Drupal/Core/Database/Query/Insert.php, line 12 Namespace Drupal\Core\Database\Query Members Name Modifiers Type Description Insert::$fromQuery

input.html.twig

Default theme implementation for an 'input' #type form element. Available variables: attributes: A list of HTML attributes for the input element. children: Optional additional rendered elements. See also template_preprocess_input() File core/modules/system/templates/input.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

Input validation

Functions to validate user input. File core/includes/common.inc, line 162 Common functions that many Drupal modules will need to reference. Functions Name Location Description valid_email_address Deprecated core/includes/common.inc Verifies the syntax of the given email address.