Form.php
Same filename in other branches
Namespace
Drupal\Core\Render\ElementFile
-
core/
lib/ Drupal/ Core/ Render/ Element/ Form.php
View source
<?php
namespace Drupal\Core\Render\Element;
use Drupal\Core\Render\Attribute\RenderElement;
/**
* Provides a render element for a form.
*/
class Form extends RenderElementBase {
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#method' => 'post',
'#theme_wrappers' => [
'form',
],
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
Form | Provides a render element for a form. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.