Automattic\WooCommerce\Database\Migrations\CustomOrderTable
PostToOrderAddressTableMigrator::get_core_column_mapping()
Get columns config.
Метод класса: PostToOrderAddressTableMigrator{}
Хуков нет.
Возвращает
\Строку[][]
. Config.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_core_column_mapping(): array;
Код PostToOrderAddressTableMigrator::get_core_column_mapping() PostToOrderAddressTableMigrator::get core column mapping WC 9.3.1
protected function get_core_column_mapping(): array { $type = $this->type; return array( 'ID' => array( 'type' => 'int', 'destination' => 'order_id', ), 'type' => array( 'type' => 'string', 'destination' => 'address_type', 'select_clause' => "'$type'", ), ); }