Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ForwardPort] #18896 Add Mexico Regions #21180

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class AddDataForIndia implements DataPatchInterface, PatchVersionInterface
private $dataInstallerFactory;

/**
* AddDataForCroatia constructor.
* AddDataForIndia constructor.
*
* @param ModuleDataSetupInterface $moduleDataSetup
* @param \Magento\Directory\Setup\DataInstallerFactory $dataInstallerFactory
Expand Down
127 changes: 127 additions & 0 deletions app/code/Magento/Directory/Setup/Patch/Data/AddDataForMexico.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

declare(strict_types=1);

namespace Magento\Directory\Setup\Patch\Data;

use Magento\Directory\Setup\DataInstaller;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\Patch\DataPatchInterface;
use Magento\Framework\Setup\Patch\PatchVersionInterface;

/**
* Adds Mexican States
*/
class AddDataForMexico implements DataPatchInterface, PatchVersionInterface
{
/**
* @var ModuleDataSetupInterface
*/
private $moduleDataSetup;

/**
* @var \Magento\Directory\Setup\DataInstallerFactory
*/
private $dataInstallerFactory;

/**
* @param ModuleDataSetupInterface $moduleDataSetup
* @param \Magento\Directory\Setup\DataInstallerFactory $dataInstallerFactory
*/
public function __construct(
ModuleDataSetupInterface $moduleDataSetup,
\Magento\Directory\Setup\DataInstallerFactory $dataInstallerFactory
) {
$this->moduleDataSetup = $moduleDataSetup;
$this->dataInstallerFactory = $dataInstallerFactory;
}

/**
* @inheritdoc
*/
public function apply()
{
/** @var DataInstaller $dataInstaller */
$dataInstaller = $this->dataInstallerFactory->create();
$dataInstaller->addCountryRegions(
$this->moduleDataSetup->getConnection(),
$this->getDataForMexico()
);
}

/**
* Mexican states data.
*
* @return array
*/
private function getDataForMexico()
{
return [
['MX', 'AGU', 'Aguascalientes'],
['MX', 'BCN', 'Baja California'],
['MX', 'BCS', 'Baja California Sur'],
['MX', 'CAM', 'Campeche'],
['MX', 'CHP', 'Chiapas'],
['MX', 'CHH', 'Chihuahua'],
['MX', 'CMX', 'Ciudad de México'],
['MX', 'COA', 'Coahuila'],
['MX', 'COL', 'Colima'],
['MX', 'DUR', 'Durango'],
['MX', 'MEX', 'Estado de México'],
['MX', 'GUA', 'Guanajuato'],
['MX', 'GRO', 'Guerrero'],
['MX', 'HID', 'Hidalgo'],
['MX', 'JAL', 'Jalisco'],
['MX', 'MIC', 'Michoacán'],
['MX', 'MOR', 'Morelos'],
['MX', 'NAY', 'Nayarit'],
['MX', 'NLE', 'Nuevo León'],
['MX', 'OAX', 'Oaxaca'],
['MX', 'PUE', 'Puebla'],
['MX', 'QUE', 'Querétaro'],
['MX', 'ROO', 'Quintana Roo'],
['MX', 'SLP', 'San Luis Potosí'],
['MX', 'SIN', 'Sinaloa'],
['MX', 'SON', 'Sonora'],
['MX', 'TAB', 'Tabasco'],
['MX', 'TAM', 'Tamaulipas'],
['MX', 'TLA', 'Tlaxcala'],
['MX', 'VER', 'Veracruz'],
['MX', 'YUC', 'Yucatán'],
['MX', 'ZAC', 'Zacatecas']
];
}

/**
* @inheritdoc
*/
public static function getDependencies()
{
return [
InitializeDirectoryData::class,
AddDataForAustralia::class,
AddDataForCroatia::class,
AddDataForIndia::class,
];
}

/**
* @inheritdoc
*/
public static function getVersion()
{
return '2.0.4';
}

/**
* @inheritdoc
*/
public function getAliases()
{
return [];
}
}