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