protected function LingotekTestBase::goToContentBulkManagementForm in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 4.0.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.0.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.1.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.3.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.4.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.5.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.6.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.7.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
- 3.8.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
Go to the content bulk management form.
Parameters
string $entity_type_id: Entity type ID we want to manage in bulk. By default is node.
string $prefix: The prefix if we want to visit the page in a different locale.
200 calls to LingotekTestBase::goToContentBulkManagementForm()
- ChineseBulkTranslationTest::testNodeTranslationUsingLinks in tests/
src/ Functional/ ChineseBulkTranslationTest.php - Tests that a node can be translated using the links on the management page.
- LingotekBulkDeleteTest::testNodeBulkDelete in tests/
src/ Functional/ LingotekBulkDeleteTest.php - Tests that a node can be deleted in the management page.
- LingotekBulkDeleteTest::testTaxonomyTermBulkDelete in tests/
src/ Functional/ LingotekBulkDeleteTest.php - Tests that a taxonomy term cannot be deleted in the management page.
- LingotekContentEntityGetProfileHookTest::testGetProfileWithoutParentProfile in tests/
src/ Functional/ LingotekContentEntityGetProfileHookTest.php - Tests that a profile can be overridden before uploading.
- LingotekContentEntityGetProfileHookTest::testProfileWithNullProfile in tests/
src/ Functional/ LingotekContentEntityGetProfileHookTest.php - Tests that a profile can be overridden before uploading.
File
- tests/
src/ Functional/ LingotekTestBase.php, line 170
Class
- LingotekTestBase
- Base class for Lingotek test. Performs authorization of the account.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function goToContentBulkManagementForm($entity_type_id = 'node', $prefix = NULL) {
$this
->drupalGet($this
->getContentBulkManagementFormUrl($entity_type_id, $prefix));
}