function restclient_filemode_signature_alter in RESTClient 7.2
hook to define the list of elements to include in in the file signature.
Return value
array Return an array of elements to be used for the file signature.
File
- ./
restclient.module, line 1121 - Defines a standard REST interface to RESTful services
Code
function restclient_filemode_signature_alter() {
return array(
'headers',
'method',
);
}