You are here

public static function StructureSyncHelper::importTaxonomiesSafe in Structure Sync 2.x

Same name and namespace in other branches
  1. 8 src/StructureSyncHelper.php \Drupal\structure_sync\StructureSyncHelper::importTaxonomiesSafe()

Function to start importing taxonomies with the 'safe' style.

File

src/StructureSyncHelper.php, line 112

Class

StructureSyncHelper
Container of functions for importing and exporting content in structure.

Namespace

Drupal\structure_sync

Code

public static function importTaxonomiesSafe(array &$form, FormStateInterface $form_state = NULL) {
  $form['style'] = 'safe';
  StructureSyncHelper::importTaxonomies($form, $form_state);
}