function EntityFormTest::providerTestFormIds
Provides test data for testFormId().
File
- 
              core/tests/ Drupal/ Tests/ Core/ Entity/ EntityFormTest.php, line 75 
Class
- EntityFormTest
- @coversDefaultClass \Drupal\Core\Entity\EntityForm[[api-linebreak]] @group Entity
Namespace
Drupal\Tests\Core\EntityCode
public static function providerTestFormIds() {
  return [
    [
      'node_article_form',
      [
        'entity_type' => 'node',
        'bundle' => 'article',
        'operation' => 'default',
      ],
    ],
    [
      'node_article_delete_form',
      [
        'entity_type' => 'node',
        'bundle' => 'article',
        'operation' => 'delete',
      ],
    ],
    [
      'user_user_form',
      [
        'entity_type' => 'user',
        'bundle' => 'user',
        'operation' => 'default',
      ],
    ],
    [
      'user_form',
      [
        'entity_type' => 'user',
        'bundle' => '',
        'operation' => 'default',
      ],
    ],
    [
      'user_delete_form',
      [
        'entity_type' => 'user',
        'bundle' => '',
        'operation' => 'delete',
      ],
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
