Analyze

Displays analysis information for a view. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterfaceclass \Drupal\views_ui\Form\Ajax\Analyze File core/modules/views_ui/src/Form/Ajax/Analyze.php, line 11 Namespace Drupal\views_ui\Form

AmbiguousEntityClassException::__construct

public AmbiguousEntityClassException::__construct($class) Constructs an AmbiguousEntityClassException. Parameters string $class: The entity parent class. File core/lib/Drupal/Core/Entity/Exception/AmbiguousEntityClassException.php, line 18 Class AmbiguousEntityClassException Exception thrown if multiple entity types exist for an entity class. Namespace Drupal\Core\Entity\Exception Code public function __construct($class) { $message = sprintf('Multiple entity types found for %s.', $c

AmbiguousEntityClassException

Exception thrown if multiple entity types exist for an entity class. Hierarchy class \Drupal\Core\Entity\Exception\AmbiguousEntityClassException extends \Exception See also hook_entity_info_alter() File core/lib/Drupal/Core/Entity/Exception/AmbiguousEntityClassException.php, line 10 Namespace Drupal\Core\Entity\Exception Members Name Modifiers Type Description AmbiguousEntityClassException::__construct public function Constructs an AmbiguousEntityClassException.

AlterableInterface::hasTag

public AlterableInterface::hasTag($tag) Determines if a given query has a given tag. Parameters $tag: The tag to check. Return value TRUE if this query has been marked with this tag, FALSE otherwise. File core/lib/Drupal/Core/Database/Query/AlterableInterface.php, line 36 Class AlterableInterface Interface for a query that can be manipulated via an alter hook. Namespace Drupal\Core\Database\Query Code public function hasTag($tag);

AlterableInterface::hasAnyTag

public AlterableInterface::hasAnyTag() Determines if a given query has any specified tag. Parameters $tags: A variable number of arguments, one for each tag to check. Return value TRUE if this query has been marked with at least one of the specified tags, FALSE otherwise. File core/lib/Drupal/Core/Database/Query/AlterableInterface.php, line 60 Class AlterableInterface Interface for a query that can be manipulated via an alter hook. Namespace Drupal\Core\Database\Query Code public fun

AlterableInterface::hasAllTags

public AlterableInterface::hasAllTags() Determines if a given query has all specified tags. Parameters $tags: A variable number of arguments, one for each tag to check. Return value TRUE if this query has been marked with all specified tags, FALSE otherwise. File core/lib/Drupal/Core/Database/Query/AlterableInterface.php, line 48 Class AlterableInterface Interface for a query that can be manipulated via an alter hook. Namespace Drupal\Core\Database\Query Code public function hasAllTa

AlterableInterface::getMetaData

public AlterableInterface::getMetaData($key) Retrieves a given piece of metadata. Parameters $key: The unique identifier for the piece of metadata to retrieve. Return value The previously attached metadata object, or NULL if one doesn't exist. File core/lib/Drupal/Core/Database/Query/AlterableInterface.php, line 89 Class AlterableInterface Interface for a query that can be manipulated via an alter hook. Namespace Drupal\Core\Database\Query Code public function getMetaData($key);

AlterableInterface::addTag

public AlterableInterface::addTag($tag) Adds a tag to a query. Tags are strings that identify a query. A query may have any number of tags. Tags are used to mark a query so that alter hooks may decide if they wish to take action. Tags should be all lower-case and contain only letters, numbers, and underscore, and start with a letter. That is, they should follow the same rules as PHP identifiers in general. Parameters $tag: The tag to add. Return value \Drupal\Core\Database\Query\AlterableInte

AlterableInterface::addMetaData

public AlterableInterface::addMetaData($key, $object) Adds additional metadata to the query. Often, a query may need to provide additional contextual data to alter hooks. Alter hooks may then use that information to decide if and how to take action. Parameters $key: The unique identifier for this piece of metadata. Must be a string that follows the same rules as any other PHP identifier. $object: The additional data to add to the query. May be any valid PHP variable. Return value \Drupal\Core

AlterableInterface

Interface for a query that can be manipulated via an alter hook. Hierarchy interface \Drupal\Core\Database\Query\AlterableInterface File core/lib/Drupal/Core/Database/Query/AlterableInterface.php, line 8 Namespace Drupal\Core\Database\Query Members Name Modifiers Type Description AlterableInterface::addMetaData public function Adds additional metadata to the query. AlterableInterface::addTag public function Adds a tag to a query. AlterableInterface::getMetaData