Connection::queryTemporary

public Connection::queryTemporary($query, array $args = array(), array $options = array()) Runs a SELECT query and stores its results in a temporary table. Use this as a substitute for ->query() when the results need to stored in a temporary table. Temporary tables exist for the duration of the page request. User-supplied arguments to the query should be passed in as separate parameters so that they can be properly escaped to avoid SQL injection attacks. Note that if you need to know how man

NodeTypeInterface

Provides an interface defining a node type entity. Hierarchy interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterfaceinterface \Drupal\Core\Config\Entity\ConfigEntityInterfaceinterface \Drupal\node\NodeTypeInterface File core/modules/node/src/NodeTypeInterface.php, line 10 Namespace Drupal\node Members Name Modifiers Type Description AccessibleInterface::access public function Checks data value access. CacheableD

ExecutionContextFactory::__construct

public ExecutionContextFactory::__construct(TranslatorInterface $translator, $translationDomain = null) Constructs a new ExecutionContextFactory instance. Parameters \Drupal\Core\Validation\TranslatorInterface $translator: The translator instance. string $translationDomain: (optional) The translation domain. File core/lib/Drupal/Core/TypedData/Validation/ExecutionContextFactory.php, line 36 Class ExecutionContextFactory Defines an execution factory for the Typed Data validator. Namespac

Connection::getKey

public Connection::getKey() Returns the key this connection is associated with. Return value string|null The key of this connection, or NULL if no key is set. File core/lib/Drupal/Core/Database/Connection.php, line 437 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getKey() { return $this->key; }

SSH::copyFileJailed

protected SSH::copyFileJailed($source, $destination) Copies a file. Parameters string $source: The source file. string $destination: The destination file. Overrides FileTransfer::copyFileJailed File core/lib/Drupal/Core/FileTransfer/SSH.php, line 48 Class SSH The SSH connection class for the update module. Namespace Drupal\Core\FileTransfer Code protected function copyFileJailed($source, $destination) { if (!@ssh2_scp_send($this->connection, $source, $destination)) { throw ne

TypedConfigInterface::get

public TypedConfigInterface::get($name) Gets a contained typed configuration element. Parameters $name: The name of the property to get; e.g., 'title' or 'name'. Nested elements can be get using multiple dot delimited names, for example, 'page.front'. Return value \Drupal\Core\TypedData\TypedDataInterface The property object. Throws \InvalidArgumentException If an invalid property name is given. File core/lib/Drupal/Core/Config/Schema/TypedConfigInterface.php, line 49 Class TypedConfigIn

content_moderation_entity_extra_field_info

content_moderation_entity_extra_field_info() Implements hook_entity_extra_field_info(). File core/modules/content_moderation/content_moderation.module, line 151 Contains content_moderation.module. Code function content_moderation_entity_extra_field_info() { return \Drupal::service('class_resolver') ->getInstanceFromDefinition(EntityTypeInfo::class) ->entityExtraFieldInfo(); }

FormState::isExecuted

public FormState::isExecuted() Determines if the form was submitted and has been processed and executed. Return value bool TRUE if the form was submitted and has been processed and executed. Overrides FormStateInterface::isExecuted File core/lib/Drupal/Core/Form/FormState.php, line 537 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function isExecuted() { return $this->executed; }

ViewsWizard

Defines a Plugin annotation object for views wizard plugins. Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsPluginAnnotationBase implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsWizard See also \Drupal\views\Plugin\views\wizard\WizardPluginBase \Drupal\views\Plugin\views\wizard\WizardInterface Related topics Annotations Annotations for class discovery and metadata description. Views wizard plugins Plug

content_moderation_theme

content_moderation_theme() Implements hook_theme(). File core/modules/content_moderation/content_moderation.module, line 205 Contains content_moderation.module. Code function content_moderation_theme() { return ['entity_moderation_form' => ['render element' => 'form']]; }