You are here

public static function StructureSyncHelper::importMenuLinksSafe in Structure Sync 8

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

Function to start importing menu links with the 'safe' style.

File

src/StructureSyncHelper.php, line 166

Class

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

Namespace

Drupal\structure_sync

Code

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