Vocabulary::$vid

The taxonomy vocabulary ID. Type: string File core/modules/taxonomy/src/Entity/Vocabulary.php, line 56 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code protected $vid;

Vocabulary::$weight

The weight of this vocabulary in relation to other vocabularies. Type: int File core/modules/taxonomy/src/Entity/Vocabulary.php, line 89 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code protected $weight = 0;

Vocabulary::id

public Vocabulary::id() Gets the identifier. Return value string|int|null The entity identifier, or NULL if the object does not yet have an identifier. Overrides Entity::id File core/modules/taxonomy/src/Entity/Vocabulary.php, line 109 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code public function id() { return $this->vid; }

Vocabulary::$name

Name of the vocabulary. Type: string File core/modules/taxonomy/src/Entity/Vocabulary.php, line 63 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code protected $name;

Vocabulary::$description

Description of the vocabulary. Type: string File core/modules/taxonomy/src/Entity/Vocabulary.php, line 70 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code protected $description;

Vocabulary

Defines the taxonomy vocabulary entity. Plugin annotation @ConfigEntityType( id = "taxonomy_vocabulary", label = @Translation("Taxonomy vocabulary"), handlers = { "storage" = "Drupal\taxonomy\VocabularyStorage", "list_builder" = "Drupal\taxonomy\VocabularyListBuilder", "form" = { "default" = "Drupal\taxonomy\VocabularyForm", "reset" = "Drupal\taxonomy\Form\VocabularyResetForm", "delete" = "Drupal\taxonomy\Form\VocabularyDeleteForm" } }, admin_permissi

Vocabulary::$hierarchy

The type of hierarchy allowed within the vocabulary. Possible values: VocabularyInterface::HIERARCHY_DISABLED: No parents. VocabularyInterface::HIERARCHY_SINGLE: Single parent. VocabularyInterface::HIERARCHY_MULTIPL: Multiple parents. Type: int File core/modules/taxonomy/src/Entity/Vocabulary.php, line 82 Class Vocabulary Defines the taxonomy vocabulary entity. Namespace Drupal\taxonomy\Entity Code protected $hierarchy = VocabularyInterface::HIERARCHY_DISABLED;

ViewUIConverter::__construct

public ViewUIConverter::__construct(EntityManagerInterface $entity_manager, SharedTempStoreFactory $temp_store_factory, ConfigFactoryInterface $config_factory = NULL, AdminContext $admin_context = NULL) Constructs a new ViewUIConverter. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. \Drupal\user\SharedTempStoreFactory $temp_store_factory: The factory for the temp store object. Overrides AdminPathConfigEntityConverter::__construct File core/modules/vi

ViewUIConverter::$tempStoreFactory

Stores the tempstore factory. Type: \Drupal\user\SharedTempStoreFactory File core/modules/views_ui/src/ParamConverter/ViewUIConverter.php, line 37 Class ViewUIConverter Provides upcasting for a view entity to be used in the Views UI. Namespace Drupal\views_ui\ParamConverter Code protected $tempStoreFactory;

ViewUIConverter::applies

public ViewUIConverter::applies($definition, $name, Route $route) Determines if the converter applies to a specific route and variable. Parameters mixed $definition: The parameter definition provided in the route options. string $name: The name of the parameter. \Symfony\Component\Routing\Route $route: The route to consider attaching to. Return value bool TRUE if the converter applies to the passed route and parameter, FALSE otherwise. Overrides AdminPathConfigEntityConverter::applies File co