You are here

interface ClientsConnectionAdminUIInterface in Web Service Clients 7.2

Same name and namespace in other branches
  1. 7.3 includes/clients.connection.admin.inc \ClientsConnectionAdminUIInterface

@file clients.connection.admin.inc Page callbacks relating to client connection admin.

Hierarchy

Expanded class hierarchy of ClientsConnectionAdminUIInterface

All classes that implement ClientsConnectionAdminUIInterface

File

./clients.connection.admin.inc, line 7
clients.connection.admin.inc Page callbacks relating to client connection admin.

View source
interface ClientsConnectionAdminUIInterface {

  /**
   * Add configuration form elements specific to a connection's edit form.
   *
   * @param $form
   *  The form built so far. This contains the elements for the name and
   *  endpoint, but not the save button.
   *
   * @param $form_state
   *  The form state from the main form, which you probably don't need anyway.
   *
   * @return
   *  A FormAPI form array. This replaces the original form.
   *
   * @see clients_connection_form()
   * @see clients_connection_form()
   * @see clients_connection_form_submit()
   */
  function connectionSettingsForm($form, &$form_state);

}

Members

Namesort descending Modifiers Type Description Overrides
ClientsConnectionAdminUIInterface::connectionSettingsForm function Add configuration form elements specific to a connection's edit form.