function ResourceBase::availableMethods

Same name and namespace in other branches
  1. 11.x core/modules/rest/src/Plugin/ResourceBase.php \Drupal\rest\Plugin\ResourceBase::availableMethods()

File

core/modules/rest/src/Plugin/ResourceBase.php, line 148

Class

ResourceBase
Common base class for resource plugins.

Namespace

Drupal\rest\Plugin

Code

public function availableMethods() {
  $methods = $this->requestMethods();
  $available = [];
  foreach ($methods as $method) {
    // Only expose methods where the HTTP request method exists on the plugin.
    if (method_exists($this, strtolower($method))) {
      $available[] = $method;
    }
  }
  return $available;
}

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