You are here

function hosting_client_user_form_validate in Hosting 5

Same name and namespace in other branches
  1. 6.2 client/hosting_client.access.inc \hosting_client_user_form_validate()
  2. 7.4 client/hosting_client.access.inc \hosting_client_user_form_validate()
  3. 7.3 client/hosting_client.access.inc \hosting_client_user_form_validate()
1 call to hosting_client_user_form_validate()
hosting_client_user in client/hosting_client.access.inc
Implementation of hook_user().

File

client/hosting_client.access.inc, line 106
Control client node access

Code

function hosting_client_user_form_validate($edit) {
  if (array_key_exists('hosting_client', $edit) && $edit['hosting_client'] && !($client = hosting_get_client($edit['hosting_client']))) {
    form_set_error('hosting_client', 'Please fill in a valid client');
  }
}