function FormStateValuesTraitTest::providerIsValueEmpty

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitTest::providerIsValueEmpty()
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitTest::providerIsValueEmpty()
  3. 11.x core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitTest::providerIsValueEmpty()

Provides data to
" class="local">self::testIsValueEmpty
().

Return value

array[] Items are arrays of two items:

  • The key to check for in the form state (string)
  • Whether the value is empty or not (bool).

File

core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php, line 222

Class

FormStateValuesTraitTest
@coversDefaultClass \Drupal\Core\Form\FormStateValuesTrait[[api-linebreak]]

Namespace

Drupal\Tests\Core\Form

Code

public static function providerIsValueEmpty() {
  $data = [];
  $data[] = [
    'foo',
    FALSE,
  ];
  $data[] = [
    [
      'bar',
      'baz',
    ],
    FALSE,
  ];
  $data[] = [
    [
      'foo',
      'bar',
      'baz',
    ],
    TRUE,
  ];
  $data[] = [
    'true',
    FALSE,
  ];
  $data[] = [
    'false',
    TRUE,
  ];
  $data[] = [
    'null',
    TRUE,
  ];
  return $data;
}

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