function MenuLinkContentResourceTestBase::getNormalizedPostEntity
Returns the normalized POST entity.
Return value
array
Overrides EntityResourceTestBase::getNormalizedPostEntity
File
- 
              core/
modules/ menu_link_content/ tests/ src/ Functional/ Rest/ MenuLinkContentResourceTestBase.php, line 81  
Class
- MenuLinkContentResourceTestBase
 - ResourceTestBase for MenuLinkContent entity.
 
Namespace
Drupal\Tests\menu_link_content\Functional\RestCode
protected function getNormalizedPostEntity() {
  return [
    'title' => [
      [
        'value' => 'Drama llama',
      ],
    ],
    'link' => [
      [
        'uri' => 'http://www.urbandictionary.com/define.php?term=drama%20llama',
        'options' => [
          'fragment' => 'a-fragment',
          'attributes' => [
            'class' => [
              'example-class',
            ],
          ],
        ],
      ],
    ],
    'bundle' => [
      [
        'value' => 'menu_link_content',
      ],
    ],
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.