You are here

function clients_connection_base::formatEndpoint in Web Service Clients 6.2

Same name and namespace in other branches
  1. 7.3 includes/clients.entity.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.

2 methods override 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.
clients_connection_drupal_services_7_3::formatEndpoint in connections/clients_drupal/clients_drupal.inc
Format the connection's endpoint as a link.

File

./clients.inc, line 43
Contains basic classes for client connections.

Class

clients_connection_base
Base class for client connections.

Code

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