ConfigQueryTest.php
Same filename in other branches
Namespace
Drupal\config_test\EntityFile
-
core/
modules/ config/ tests/ config_test/ src/ Entity/ ConfigQueryTest.php
View source
<?php
namespace Drupal\config_test\Entity;
/**
* Defines the ConfigQueryTest configuration entity used by the query test.
*
* @ConfigEntityType(
* id = "config_query_test",
* label = @Translation("Test configuration for query"),
* handlers = {
* "storage" = "Drupal\config_test\ConfigTestStorage",
* "list_builder" = "Drupal\Core\Config\Entity\ConfigEntityListBuilder",
* "form" = {
* "default" = "Drupal\config_test\ConfigTestForm"
* }
* },
* config_prefix = "query",
* config_export = {
* "id",
* "label",
* "array",
* "number",
* },
* entity_keys = {
* "id" = "id",
* "label" = "label"
* }
* )
*
* @see \Drupal\system\Tests\Entity\ConfigEntityQueryTest
*/
class ConfigQueryTest extends ConfigTest {
/**
* A number used by the sort tests.
*
* @var int
*/
public $number;
/**
* An array used by the wildcard tests.
*
* @var array
*/
public $array = [];
}
Classes
Title | Deprecated | Summary |
---|---|---|
ConfigQueryTest | Defines the ConfigQueryTest configuration entity used by the query test. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.