public function Uri::getInfo in Feeds 8.3
Returns the element properties for this element.
Return value
array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.
Overrides Url::getInfo
File
- src/
Element/ Uri.php, line 19
Class
- Uri
- Provides a form element for input of a URI.
Namespace
Drupal\feeds\ElementCode
public function getInfo() {
$info = parent::getInfo();
$info['#allowed_schemes'] = [];
return $info;
}