function ConfigTargetTest::testFromFormString

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Form/ConfigTargetTest.php \Drupal\Tests\Core\Form\ConfigTargetTest::testFromFormString()

@covers ::fromForm @covers ::fromString

File

core/tests/Drupal/Tests/Core/Form/ConfigTargetTest.php, line 117

Class

ConfigTargetTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Form%21ConfigTarget.php/class/ConfigTarget/11.x" title="Represents the mapping of a config property to a form element." class="local">\Drupal\Core\Form\ConfigTarget</a> @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function testFromFormString() : void {
    $form = [
        'group' => [
            '#type' => 'details',
            'test' => [
                '#type' => 'text',
                '#default_value' => 'A test',
                '#config_target' => 'system.site:name',
                '#name' => 'test',
                '#parents' => [
                    'test',
                ],
            ],
        ],
    ];
    $config_target = ConfigTarget::fromForm([
        'group',
        'test',
    ], $form);
    $this->assertSame('system.site', $config_target->configName);
    $this->assertSame([
        'name',
    ], $config_target->propertyPaths);
    $this->assertSame([
        'test',
    ], $config_target->elementParents);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.