public ImageStyleFormBase::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/image/src/Form/ImageStyleFormBase.php, line 51
Class
- ImageStyleFormBase
- Base form for image style add and edit forms.
Namespace
Drupal\image\Form
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | public function form( array $form , FormStateInterface $form_state ) { $form [ 'label' ] = array ( '#type' => 'textfield' , '#title' => $this ->t( 'Image style name' ), '#default_value' => $this ->entity->label(), '#required' => TRUE, ); $form [ 'name' ] = array ( '#type' => 'machine_name' , '#machine_name' => array ( 'exists' => array ( $this ->imageStyleStorage, 'load' ), ), '#default_value' => $this ->entity->id(), '#required' => TRUE, ); return parent::form( $form , $form_state ); } |
Please login to continue.