public function LingotekConfigurationService::setDeleteRemoteAfterDisassociation in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 4.0.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.0.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.1.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.2.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.3.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.4.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.5.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.6.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.7.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
- 3.8.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setDeleteRemoteAfterDisassociation()
Sets if remote documents must be deleted after disassociation.
Parameters
boolean $delete: TRUE if remote documents must be deleted, FALSE otherwise.
Overrides LingotekConfigurationServiceInterface::setDeleteRemoteAfterDisassociation
File
- src/
LingotekConfigurationService.php, line 258 - Contains \Drupal\lingotek\LingotekConfigurationService.
Class
- LingotekConfigurationService
- Service for managing lingotek configuration.
Namespace
Drupal\lingotekCode
public function setDeleteRemoteAfterDisassociation($delete) {
$config = \Drupal::configFactory()
->getEditable('lingotek.settings');
$config
->set('preference.delete_tms_documents_upon_disassociation', $delete)
->save();
}