protected function ContentTranslationUITestBase::getFormSubmitActionForNewTranslation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::getFormSubmitActionForNewTranslation()
 
Returns the form action value when submitting a new translation.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity being tested.
string $langcode: Language code for the form.
Return value
string Name of the button to hit.
1 call to ContentTranslationUITestBase::getFormSubmitActionForNewTranslation()
- ContentTranslationUITestBase::doTestBasicTranslation in core/
modules/ content_translation/ src/ Tests/ ContentTranslationUITestBase.php  - Tests the basic translation workflow.
 
File
- core/
modules/ content_translation/ src/ Tests/ ContentTranslationUITestBase.php, line 388  - Contains \Drupal\content_translation\Tests\ContentTranslationUITestBase.
 
Class
- ContentTranslationUITestBase
 - Tests the Content Translation UI.
 
Namespace
Drupal\content_translation\TestsCode
protected function getFormSubmitActionForNewTranslation(EntityInterface $entity, $langcode) {
  $entity
    ->addTranslation($langcode, $entity
    ->toArray());
  return $this
    ->getFormSubmitAction($entity, $langcode);
}