function Submit::getInfo
Overrides Button::getInfo
2 calls to Submit::getInfo()
- ImageButton::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ ImageButton.php - Returns the element properties for this element.
- ImageButton::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ ImageButton.php - Returns the element properties for this element.
1 method overrides Submit::getInfo()
- ImageButton::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ ImageButton.php - Returns the element properties for this element.
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ Submit.php, line 35
Class
- Submit
- Provides a form submit button.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
return [
'#executes_submit_callback' => TRUE,
] + parent::getInfo();
}