You are here

public static function StructureSyncHelper::exportTaxonomies in Structure Sync 8

Same name and namespace in other branches
  1. 2.x src/StructureSyncHelper.php \Drupal\structure_sync\StructureSyncHelper::exportTaxonomies()

Function to export taxonomy terms.

2 calls to StructureSyncHelper::exportTaxonomies()
drush_structure_sync_export_taxonomies in ./structure_sync.drush.inc
Call back function drush_structure_sync_export_taxonomies()
StructureSyncCommands::exportTaxonomies in src/Commands/StructureSyncCommands.php
Export the taxonomies

File

src/StructureSyncHelper.php, line 18

Class

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

Namespace

Drupal\structure_sync

Code

public static function exportTaxonomies(array $form = NULL, FormStateInterface $form_state = NULL) {
  $taxonomiesController = new TaxonomiesController();
  $taxonomiesController
    ->exportTaxonomies($form, $form_state);
}