protected function LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink in Lingotek Translation 3.5.x
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.0.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.1.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.2.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.3.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.4.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.6.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.7.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- 3.8.x tests/src/Functional/LingotekManagementTestTrait.php \Drupal\Tests\lingotek\Functional\LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
Asserts there is NOT a link for checking the translation status for a given locale.
Parameters
string $locale: The locale.
string $document_id: The Lingotek document ID. Optional, defaults to 'dummy-document-hash-id'.
string $entity_type_id: The entity type ID. Optional, defaults to node.
string|null $prefix: Language prefix if any. Optional, defaults to NULL.
2 calls to LingotekManagementTestTrait::assertNoLingotekCheckTargetStatusLink()
- LingotekNodeBulkDisabledTargetOverrideTranslationTest::testNodeTranslationUsingActions in tests/
src/ Functional/ LingotekNodeBulkDisabledTargetOverrideTranslationTest.php - Tests that a node can be translated using the actions on the management page.
- LingotekNodeBulkDisabledTargetOverrideTranslationTest::testNodeTranslationUsingActionsForMultipleLocales in tests/
src/ Functional/ LingotekNodeBulkDisabledTargetOverrideTranslationTest.php - Tests that a node can be translated using the actions on the management page for multiple locales.
File
- tests/
src/ Functional/ LingotekManagementTestTrait.php, line 196
Class
- LingotekManagementTestTrait
- Trait with Lingotek management form helpers.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function assertNoLingotekCheckTargetStatusLink($locale, $document_id = 'dummy-document-hash-id', $entity_type_id = 'node', $prefix = NULL, $destination_entity_type_id = NULL, $destination_entity_id = NULL) {
$basepath = \Drupal::request()
->getBasePath();
$languagePrefix = $prefix === NULL ? '' : '/' . $prefix;
$destination_entity_type_id = $destination_entity_type_id ?: $entity_type_id;
$href = $basepath . $languagePrefix . '/admin/lingotek/entity/check_target/' . $document_id . '/' . $locale;
if ($destination = $this
->getDestination($destination_entity_type_id, $prefix)) {
$href .= $destination;
}
$this
->assertNoLinkByHref($href);
}