You are here

function clients_connection_base::credentialsProperties in Web Service Clients 7.3

Declare an array of properties which should be treated as credentials.

This lets the credentials storage plugin know which configuration properties to take care of.

Return value

A flat array of property names.

2 methods override clients_connection_base::credentialsProperties()
clients_connection_drupal_services::credentialsProperties in connections/clients_drupal/clients_drupal.inc
Declare an array of properties which should be treated as credentials.
clients_connection_drupal_services_rest_7::credentialsProperties in connections/clients_drupal_rest/clients_drupal_rest.inc
Declare an array of properties which should be treated as credentials.

File

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

Class

clients_connection_base
Base class for client connections.

Code

function credentialsProperties() {
  return array();
}