public VocabularyForm::__construct(VocabularyStorageInterface $vocabulary_storage)
Constructs a new vocabulary form.
Parameters
\Drupal\taxonomy\VocabularyStorageInterface $vocabulary_storage: The vocabulary storage.
File
- core/modules/taxonomy/src/VocabularyForm.php, line 30
Class
- VocabularyForm
- Base form for vocabulary edit forms.
Namespace
Drupal\taxonomy
Code
1 2 3 | public function __construct(VocabularyStorageInterface $vocabulary_storage ) { $this ->vocabularyStorage = $vocabulary_storage ; } |
Please login to continue.