protected function LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 4.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.1.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.2.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.3.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.5.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.6.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.7.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
Gets the bulk checkbox selection key in a table.
Parameters
string $langcode: The langcode.
int $revision_id: The revision ID.
string $entity_type_id: The entity type ID.
Return value
string The table checkbox key.
Overrides LingotekManagementTestTrait::getBulkSelectionKey
12 calls to LingotekSystemSiteBulkTranslationTest::getBulkSelectionKey()
- LingotekSystemSiteBulkTranslationTest::testRequestAllTranslationsWithActionWithADocumentArchivedError in tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php - Tests that we manage errors when using the request all translations action.
- LingotekSystemSiteBulkTranslationTest::testRequestAllTranslationsWithActionWithADocumentLockedError in tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php - Tests that we manage errors when using the request all translations action.
- LingotekSystemSiteBulkTranslationTest::testRequestAllTranslationsWithActionWithAnError in tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php - Tests that we manage errors when using the request all translations action.
- LingotekSystemSiteBulkTranslationTest::testRequestAllTranslationsWithActionWithAPaymentRequiredError in tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php - Tests that we manage errors when using the request all translations action.
- LingotekSystemSiteBulkTranslationTest::testRequestTranslationWithActionWithADocumentArchivedError in tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php - Tests that we manage errors when using the request translation action.
File
- tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php, line 1635
Class
- LingotekSystemSiteBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function getBulkSelectionKey($langcode, $revision_id, $entity_type_id = 'system.site_information_settings') {
return 'table[' . $entity_type_id . ']';
}