You are here

function clients_connection_base::formatEndpoint in Web Service Clients 7.3

Same name and namespace in other branches
  1. 6.2 clients.inc \clients_connection_base::formatEndpoint()
  2. 7.2 clients.inc \clients_connection_base::formatEndpoint()

Format the connection's endpoint as a link.

Parameters

$url: The connection's endpoint.

Return value

The string to display in the admin UI. Subclasses may format this as a link to the remote site.

1 method overrides clients_connection_base::formatEndpoint()
clients_connection_drupal_services_6_2::formatEndpoint in connections/clients_drupal/clients_drupal.inc
Format the connection's endpoint as a link.

File

includes/clients.entity.inc, line 121
Provides base classes for clients handler entities.

Class

clients_connection_base
Base class for client connections.

Code

function formatEndpoint($url) {
  return $url;
}