You are here

function clients_connection_drupal_services_7_3::formatEndpoint in Web Service Clients 6.2

Same name and namespace in other branches
  1. 7.2 connections/clients_drupal/clients_drupal.inc \clients_connection_drupal_services_7_3::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.

Overrides clients_connection_base::formatEndpoint

File

connections/clients_drupal/clients_drupal.inc, line 266
Contains classes for Client connections handlers.

Class

clients_connection_drupal_services_7_3
Drupal client for services on a Drupal 7 site for Services 7.x-3.x.

Code

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