function RestResourceConfig::getFormats

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Entity/RestResourceConfig.php \Drupal\rest\Entity\RestResourceConfig::getFormats()
  2. 10 core/modules/rest/src/Entity/RestResourceConfig.php \Drupal\rest\Entity\RestResourceConfig::getFormats()
  3. 11.x core/modules/rest/src/Entity/RestResourceConfig.php \Drupal\rest\Entity\RestResourceConfig::getFormats()

Overrides RestResourceConfigInterface::getFormats

File

core/modules/rest/src/Entity/RestResourceConfig.php, line 184

Class

RestResourceConfig
Defines a RestResourceConfig configuration entity class.

Namespace

Drupal\rest\Entity

Code

public function getFormats($method) {
    switch ($this->granularity) {
        case RestResourceConfigInterface::METHOD_GRANULARITY:
            return $this->getFormatsForMethodGranularity($method);
        case RestResourceConfigInterface::RESOURCE_GRANULARITY:
            return $this->configuration['formats'];
        default:
            throw new \InvalidArgumentException('Invalid granularity specified.');
    }
}

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