farmOS/modules/core/migrate/src/Plugin/migrate/source/d7/FarmArea.php

53 lines
1.3 KiB
PHP

<?php
namespace Drupal\farm_migrate\Plugin\migrate\source\d7;
use Drupal\taxonomy\Plugin\migrate\source\d7\Term;
/**
* Farm area source.
*
* @MigrateSource(
* id = "d7_farm_area",
* source_module = "taxonomy"
* )
*
* @deprecated in farm:2.2.0 and is removed from farm:3.0.0. Migrate from farmOS
* v1 to v2 before upgrading to farmOS v3.
* @see https://www.drupal.org/node/3382609
*/
class FarmArea extends Term {
/**
* {@inheritdoc}
*/
public function query() {
// Set the bundle to "farm_areas".
$this->configuration['bundle'] = 'farm_areas';
// Get the parent class query.
$query = parent::query();
// Join the "area type" field.
$query->leftJoin('field_data_field_farm_area_type', 'fdffat', 'td.tid = fdffat.entity_id AND fdffat.deleted = 0');
// If "area_type" is defined, filter by field_farm_area_type.
if (!empty($this->configuration['area_type'])) {
// If "area_type" is "any", don't filter.
if ($this->configuration['area_type'] != 'any') {
$query->condition('fdffat.field_farm_area_type_value', (array) $this->configuration['area_type'], 'IN');
}
}
// Otherwise, filter by field_farm_area_type IS NULL.
else {
$query->isNull('fdffat.field_farm_area_type_value');
}
return $query;
}
}