You are here

ViewsEntityArgument.php in Geolocation Field 8.2

Same filename and directory in other branches
  1. 8.3 src/Plugin/geolocation/Location/ViewsEntityArgument.php

File

src/Plugin/geolocation/Location/ViewsEntityArgument.php
View source
<?php

namespace Drupal\geolocation\Plugin\geolocation\Location;

use Drupal\geolocation\LocationInterface;
use Drupal\geolocation\LocationBase;
use Drupal\geolocation\ViewsContextTrait;

/**
 * Derive center from proximity argument.
 *
 * @Location(
 *   id = "views_entity_argument",
 *   name = @Translation("Entity ID argument"),
 *   description = @Translation("Location from entity ID argument."),
 * )
 */
class ViewsEntityArgument extends LocationBase implements LocationInterface {
  use ViewsContextTrait;

  /**
   * {@inheritdoc}
   */
  public function getAvailableLocationOptions($context) {
    $options = [];
    if ($displayHandler = self::getViewsDisplayHandler($context)) {

      /** @var \Drupal\views\Plugin\views\argument\ArgumentPluginBase $argument */
      foreach ($displayHandler
        ->getHandlers('argument') as $argument_id => $argument) {
        if ($argument
          ->getPluginId() == 'geolocation_entity_argument') {
          $options[$argument_id] = $this
            ->t('Entity argument') . ' - ' . $argument
            ->adminLabel();
        }
      }
    }
    return $options;
  }

  /**
   * {@inheritdoc}
   */
  public function getCoordinates($location_option_id, array $location_option_settings, $context = NULL) {
    if (!($displayHandler = self::getViewsDisplayHandler($context))) {
      return parent::getCoordinates($location_option_id, $location_option_settings, $context);
    }

    /** @var \Drupal\geolocation\Plugin\views\argument\ProximityArgument $handler */
    $handler = $displayHandler
      ->getHandler('argument', $location_option_id);
    if (empty($handler)) {
      return FALSE;
    }
    if ($values = $handler
      ->getParsedReferenceLocation()) {
      if (isset($values['lat']) && isset($values['lng'])) {
        return [
          'lat' => $values['lat'],
          'lng' => $values['lng'],
        ];
      }
    }
    return parent::getCoordinates($location_option_id, $location_option_settings, $context);
  }

}

Classes

Namesort descending Description
ViewsEntityArgument Derive center from proximity argument.