public LanguageAddForm::actions(array $form, FormStateInterface $form_state)
Returns an array of supported actions for the current entity form.
@todo Consider introducing a 'preview' action here, since it is used by many entity types.
Overrides EntityForm::actions
File
- core/modules/language/src/Form/LanguageAddForm.php, line 102
Class
- LanguageAddForm
- Controller for language addition forms.
Namespace
Drupal\language\Form
Code
public function actions(array $form, FormStateInterface $form_state) { // No actions needed. return array(); }
Please login to continue.