function JsWebAssertTestForm::addLink

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php \Drupal\js_webassert_test\Form\JsWebAssertTestForm::addLink()
  2. 10 core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php \Drupal\js_webassert_test\Form\JsWebAssertTestForm::addLink()
  3. 11.x core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php \Drupal\js_webassert_test\Form\JsWebAssertTestForm::addLink()

Ajax callback for the "Add link" button.

File

core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php, line 150

Class

JsWebAssertTestForm
Test form for JSWebAssert JavaScriptTestBase.

Namespace

Drupal\js_webassert_test\Form

Code

public static function addLink(array $form, FormStateInterface $form_state) {
    $form['added_link'] = [
        '#title' => 'Added link',
        '#type' => 'link',
        '#url' => Url::fromRoute('js_webassert_test.js_webassert_test_form'),
    ];
    return $form;
}

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