function support_client_label_callback in Support Ticketing System 7
Entity label callback for support clients.
1 string reference to 'support_client_label_callback'
- support_entity_info in ./
support.module - Implements hook_entity_info().
File
- ./
support.module, line 56 - support.module
Code
function support_client_label_callback($client) {
if (!empty($client->name)) {
return check_plain($client->name);
}
}