protected function LingotekSettingsTabProfilesEditForm::saveNewProfile in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 4.0.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.0.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.1.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.2.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.3.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.4.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.5.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.6.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.7.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
- 3.8.x src/Form/LingotekSettingsTabProfilesEditForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm::saveNewProfile()
1 call to LingotekSettingsTabProfilesEditForm::saveNewProfile()
- LingotekSettingsTabProfilesEditForm::submitForm in src/
Form/ LingotekSettingsTabProfilesEditForm.php - Form submission handler.
File
- src/
Form/ LingotekSettingsTabProfilesEditForm.php, line 206 - Contains \Drupal\lingotek\Form\LingotekSettingsTabProfilesEditForm.
Class
- LingotekSettingsTabProfilesEditForm
- Configure Lingotek
Namespace
Drupal\lingotek\FormCode
protected function saveNewProfile($name, $auto_upload, $auto_download) {
$profile = LingotekProfile::create([
'id' => \Drupal::transliteration()
->transliterate($name),
'label' => $name,
'auto_upload' => $auto_upload,
'auto_download' => $auto_download,
]);
$profile
->save();
}