geolocation-8.x-3.x-dev/modules/geolocation_demo/src/Form/LatlngWidget.php
modules/geolocation_demo/src/Form/LatlngWidget.php
<?php
namespace Drupal\geolocation_demo\Form;
use Drupal\Core\Form\FormStateInterface;
/**
* Returns responses for geolocation_demo module routes.
*/
class LatlngWidget extends DemoWidget {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'geolocation_demo_latlng_widget';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$widget_form = $this->getWidgetForm('geolocation_latlng', $form, $form_state);
$form['widget'] = $widget_form;
return $form;
}
}
