trait LingotekViewsTestTrait in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.0.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.1.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.2.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.3.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.4.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.5.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.6.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.7.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
- 3.8.x tests/src/Functional/Views/LingotekViewsTestTrait.php \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
Trait Lingotek views test. Overrides some methods from LingotekTestBase.
Hierarchy
- trait \Drupal\Tests\lingotek\Functional\Views\LingotekViewsTestTrait
File
- tests/
src/ Functional/ Views/ LingotekViewsTestTrait.php, line 8
Namespace
Drupal\Tests\lingotek\Functional\ViewsView source
trait LingotekViewsTestTrait {
/**
* {@inheritdoc}
*/
protected function goToConfigBulkManagementForm($filter = NULL) {
throw new \BadMethodCallException('Not implemented yet.');
}
/**
* {@inheritdoc}
*/
protected function assertManagementFormProfile($index, $profile) {
throw new \BadMethodCallException('Not implemented yet.');
}
/**
* {@inheritdoc}
*/
protected function getContentBulkManagementFormUrl($entity_type_id = 'node', $prefix = NULL) {
return ($prefix === NULL ? '' : '/' . $prefix) . '/lingotek/views/' . $entity_type_id . '_and_lingotek_metadata';
}
protected function getBulkSelectionKey($langcode, $revision_id, $entity_type_id = 'node') {
return $entity_type_id . '_bulk_form[' . ($revision_id - 1) . ']';
}
protected function getBulkOperationFormName() {
return 'action';
}
protected function getBulkOperationNameForUpload($entity_type_id) {
return $entity_type_id . '_lingotek_upload_action';
}
protected function getBulkOperationNameForCheckUpload($entity_type_id) {
return $entity_type_id . '_lingotek_check_upload_action';
}
protected function getBulkOperationNameForRequestTranslations($entity_type_id) {
return $entity_type_id . '_lingotek_request_translations_action';
}
protected function getBulkOperationNameForRequestTranslation($langcode, $entity_type_id) {
return $entity_type_id . '_' . $langcode . '_lingotek_request_translation_action';
}
protected function getBulkOperationNameForCheckTranslations($entity_type_id) {
return $entity_type_id . '_lingotek_check_translations_action';
}
protected function getBulkOperationNameForCheckTranslation($langcode, $entity_type_id) {
return $entity_type_id . '_' . $langcode . '_lingotek_check_translation_action';
}
protected function getBulkOperationNameForDownloadTranslations($entity_type_id) {
return $entity_type_id . '_lingotek_download_translations_action';
}
protected function getBulkOperationNameForDownloadTranslation($langcode, $entity_type_id) {
return $entity_type_id . '_' . $langcode . '_lingotek_download_translation_action';
}
/**
* @deprecated in 8.x-2.14, will be removed in 8.x-2.16. Use ::getBulkOperationNameForCancel instead.
*/
protected function getBulkOperationNameForDisassociate($entity_type_id) {
return $this
->getBulkOperationNameForCancel($entity_type_id);
}
protected function getBulkOperationNameForCancel($entity_type_id) {
return $entity_type_id . '_lingotek_cancel_action';
}
protected function getBulkOperationNameForCancelTarget($langcode, $entity_type_id) {
return $entity_type_id . '_' . $langcode . '_lingotek_cancel_translation_action';
}
protected function getBulkOperationNameForDeleteTranslation($langcode, $entity_type_id) {
return $entity_type_id . '_' . $langcode . '_lingotek_delete_translation_action';
}
protected function getBulkOperationNameForDeleteTranslations($entity_type_id) {
return $entity_type_id . '_lingotek_delete_translations_action';
}
protected function getApplyActionsButtonLabel() {
return t('Apply to selected items');
}
}