protected function WebformElementBase::getDefaultMultipleProperties in Webform 8.5
Get default multiple properties used by most elements.
Return value
array An associative array containing default multiple properties.
Deprecated
Scheduled for removal in Webform 8.x-6.x Use \Drupal\webform\Plugin\WebformElementBase::defineDefaultBaseProperties instead.
File
- src/
Plugin/ WebformElementBase.php, line 395
Class
- WebformElementBase
- Provides a base class for a webform element.
Namespace
Drupal\webform\PluginCode
protected function getDefaultMultipleProperties() {
@trigger_error('\\Drupal\\webform\\Plugin\\WebformElementBase::getDefaultMultipleProperties is scheduled for removal in Webform 8.x-6.x. Use \\Drupal\\webform\\Plugin\\WebformElementBase::defineDefaultBaseProperties instead.', E_USER_DEPRECATED);
return $this
->defineDefaultBaseProperties();
}