You are here

function clients_resource_uri in Web Service Clients 7.3

Entity URI callback

TODO: is this ever used?

1 string reference to 'clients_resource_uri'
clients_entity_info in ./clients.module
Implements hook_entity_info().

File

./clients.module, line 477
Clients module provides a UI, storage, and an API for handling connections to remote webservices, including those provided by Services module on other Drupal sites.

Code

function clients_resource_uri($resource) {
  return array(
    'path' => 'admin/structure/clients/resources/manage/' . $resource->name,
  );
}