You are here

public function LingotekImportController::content in Lingotek Translation 8

Generates the import content. It has two tabs, the import form and the settings form. @author Unknown

1 string reference to 'LingotekImportController::content'
lingotek.routing.yml in ./lingotek.routing.yml
lingotek.routing.yml

File

src/Controller/LingotekImportController.php, line 11

Class

LingotekImportController

Namespace

Drupal\lingotek\Controller

Code

public function content() {
  $import_tab = array(
    $this
      ->getLingotekForm('LingotekImportSettingsForm'),
    $this
      ->getLingotekForm('LingotekImportForm'),
  );
  return $import_tab;
}