Move farm_kml_import module to farm_import_kml.

This commit is contained in:
Michael Stenta 2021-08-31 15:07:40 -04:00
parent 1afff89207
commit 64ba44c694
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ function farm_modules() {
'farm_purchase' => t('Purchase logs'),
'farm_sale' => t('Sale logs'),
'farm_kml' => t('KML export features'),
'farm_kml_import' => t('KML asset importer'),
'farm_import_kml' => t('KML asset importer'),
],
];
}

View File

@ -1,4 +1,4 @@
name: farmOS KML Import
name: farmOS Import KML
description: Provides a KML import feature for farmOS.
type: module
package: farmOS

View File

@ -1,7 +1,7 @@
farm_kml_import.kml_importer:
farm_import_kml.kml_importer:
path: 'asset/import'
defaults:
_form: Drupal\farm_kml_import\Form\KmlImporter
_form: Drupal\farm_import_kml\Form\KmlImporter
_title: 'KML Import'
requirements:
_permission: 'create land asset'

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\farm_kml_import\Form;
namespace Drupal\farm_import_kml\Form;
use Drupal\asset\Entity\Asset;
use Drupal\Core\Config\ConfigFactoryInterface;