You are here

GooglePlacesApiAttributionBlock.php in Geolocation Field 8.3

File

modules/geolocation_google_maps/modules/geolocation_google_places_api/src/Plugin/Block/GooglePlacesApiAttributionBlock.php
View source
<?php

namespace Drupal\geolocation_google_places_api\Plugin\Block;

use Drupal\Core\Block\BlockBase;

/**
 * Provides a 'Fax' block.
 *
 * @Block(
 *   id = "geolocation_google_places_api_attribution_block",
 *   admin_label = @Translation("Geolocation - Google Places API Attribution block"),
 * )
 */
class GooglePlacesApiAttributionBlock extends BlockBase {

  /**
   * {@inheritdoc}
   */
  public function build() {
    return [
      '#markup' => '<span id="geolocation-google-places-api-attribution"></span>',
    ];
  }

}

Classes

Namesort descending Description
GooglePlacesApiAttributionBlock Provides a 'Fax' block.