public function DomainElementManagerInterface::getSubmitHandler in Domain Access 8
Returns the default submit handler to be used for a field element.
Return value
string A fully-qualified class and method name, such as '\\Drupal\\domain\\DomainElementManager::submitEntityForm'
The method must be public and static, since it will be called from the form submit handler without knowledge of the parent class.
The base implementation is submitEntityForm, and can be overridden by specific subclasses.
1 method overrides DomainElementManagerInterface::getSubmitHandler()
- DomainElementManager::getSubmitHandler in domain/
src/ DomainElementManager.php - Returns the default submit handler to be used for a field element.
File
- domain/
src/ DomainElementManagerInterface.php, line 103
Class
- DomainElementManagerInterface
- Handles hidden field options for domain entity references.
Namespace
Drupal\domainCode
public function getSubmitHandler();