public VocabularyForm::form(array $form, FormStateInterface $form_state)
Gets the actual form array to be built.
Overrides EntityForm::form
See also
\Drupal\Core\Entity\EntityForm::processForm()
\Drupal\Core\Entity\EntityForm::afterBuild()
File
- core/modules/taxonomy/src/VocabularyForm.php, line 46
Class
- VocabularyForm
- Base form for vocabulary edit forms.
Namespace
Drupal\taxonomy
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | public function form( array $form , FormStateInterface $form_state ) { $vocabulary = $this ->entity; if ( $vocabulary ->isNew()) { $form [ '#title' ] = $this ->t( 'Add vocabulary' ); } else { $form [ '#title' ] = $this ->t( 'Edit vocabulary' ); } $form [ 'name' ] = array ( '#type' => 'textfield' , '#title' => $this ->t( 'Name' ), '#default_value' => $vocabulary ->label(), '#maxlength' => 255, '#required' => TRUE, ); $form [ 'vid' ] = array ( '#type' => 'machine_name' , '#default_value' => $vocabulary ->id(), '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH, '#machine_name' => array ( 'exists' => array ( $this , 'exists' ), 'source' => array ( 'name' ), ), ); $form [ 'description' ] = array ( '#type' => 'textfield' , '#title' => $this ->t( 'Description' ), '#default_value' => $vocabulary ->getDescription(), ); // $form['langcode'] is not wrapped in an // if ($this->moduleHandler->moduleExists('language')) check because the // language_select form element works also without the language module being // installed. https://www.drupal.org/node/1749954 documents the new element. $form [ 'langcode' ] = array ( '#type' => 'language_select' , '#title' => $this ->t( 'Vocabulary language' ), '#languages' => LanguageInterface::STATE_ALL, '#default_value' => $vocabulary ->language()->getId(), ); if ( $this ->moduleHandler->moduleExists( 'language' )) { $form [ 'default_terms_language' ] = array ( '#type' => 'details' , '#title' => $this ->t( 'Terms language' ), '#open' => TRUE, ); $form [ 'default_terms_language' ][ 'default_language' ] = array ( '#type' => 'language_configuration' , '#entity_information' => array ( 'entity_type' => 'taxonomy_term' , 'bundle' => $vocabulary ->id(), ), '#default_value' => ContentLanguageSettings::loadByEntityTypeBundle( 'taxonomy_term' , $vocabulary ->id()), ); } // Set the hierarchy to "multiple parents" by default. This simplifies the // vocabulary form and standardizes the term form. $form [ 'hierarchy' ] = array ( '#type' => 'value' , '#value' => '0' , ); $form = parent::form( $form , $form_state ); return $this ->protectBundleIdElement( $form ); } |
Please login to continue.