public function YamlFormHandlerBase::getWeight in YAML Form 8
Returns the weight of the form handler.
Return value
int|string Either the integer weight of the form handler, or an empty string.
Overrides YamlFormHandlerInterface::getWeight
1 call to YamlFormHandlerBase::getWeight()
- YamlFormHandlerBase::getConfiguration in src/
YamlFormHandlerBase.php - Gets this plugin's configuration.
File
- src/
YamlFormHandlerBase.php, line 201
Class
- YamlFormHandlerBase
- Provides a base class for a form handler.
Namespace
Drupal\yamlformCode
public function getWeight() {
return $this->weight;
}