WebformHorizontalRule.php in Webform 6.x
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\webform\ElementFile
src/Element/WebformHorizontalRule.phpView source
<?php
namespace Drupal\webform\Element;
use Drupal\Core\Render\Element\RenderElement;
/**
* Provides a render element for horizontal rule.
*
* @FormElement("webform_horizontal_rule")
*/
class WebformHorizontalRule extends RenderElement {
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#theme' => 'webform_horizontal_rule',
];
}
}
Classes
Name | Description |
---|---|
WebformHorizontalRule | Provides a render element for horizontal rule. |