Html5Widget.php in Geolocation Field 8.2        
                          
                  
                        
  
  
  
  
File
  modules/geolocation_demo/src/Form/Html5Widget.php
  
    View source  
  <?php
namespace Drupal\geolocation_demo\Form;
use Drupal\Core\Form\FormStateInterface;
class Html5Widget extends DemoWidget {
  
  public function getFormId() {
    return 'geolocation_demo_html5_widget';
  }
  
  public function buildForm(array $form, FormStateInterface $form_state) {
    $widget_form = $this
      ->getWidgetForm('geolocation_html5', $form, $form_state);
    $form['widget'] = $widget_form;
    return $form;
  }
}
 
Classes
        
  
  
      
      
         
      
                  | Name   | Description | 
    
    
          
                  | Html5Widget | Returns responses for geolocation_demo module routes. |