You are here

public function GeofieldLatLon::getInfo in Geofield 8

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 ElementInterface::getInfo

File

src/Element/GeofieldLatLon.php, line 33

Class

GeofieldLatLon
Provides a Geofield Lat Lon form element.

Namespace

Drupal\geofield\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#process' => [
      [
        $class,
        'latlonProcess',
      ],
    ],
    '#element_validate' => [
      [
        $class,
        'elementValidate',
      ],
    ],
    '#theme_wrappers' => [
      'fieldset',
    ],
  ];
}