applyHalFieldNormalization($default_normalization); $author = User::load($this->entity->getOwnerId()); return $normalization + [ '_links' => [ 'self' => [ 'href' => $this->baseUrl . '/node/1?_format=hal_json', ], 'type' => [ 'href' => $this->baseUrl . '/rest/type/node/camelids', ], $this->baseUrl . '/rest/relation/node/camelids/uid' => [ [ 'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json', 'lang' => 'en', ], ], $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ [ 'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json', ], ], ], '_embedded' => [ $this->baseUrl . '/rest/relation/node/camelids/uid' => [ [ '_links' => [ 'self' => [ 'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json', ], 'type' => [ 'href' => $this->baseUrl . '/rest/type/user/user', ], ], 'uuid' => [ ['value' => $author->uuid()] ], 'lang' => 'en', ], ], $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ [ '_links' => [ 'self' => [ 'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json', ], 'type' => [ 'href' => $this->baseUrl . '/rest/type/user/user', ], ], 'uuid' => [ ['value' => $author->uuid()] ], ], ], ], ]; } /** * {@inheritdoc} */ protected function getNormalizedPostEntity() { return parent::getNormalizedPostEntity() + [ '_links' => [ 'type' => [ 'href' => $this->baseUrl . '/rest/type/node/camelids', ], ], ]; } }