You are here

function google_appliance_catch_all_task_title in Google Search Appliance 6.2

Make a tab title from the collection name.

1 string reference to 'google_appliance_catch_all_task_title'
google_appliance_menu in ./google_appliance.module
Implementation of hook_menu().

File

./google_appliance.module, line 296
Google Search Appliance (GSA) / Google Mini integration

Code

function google_appliance_catch_all_task_title($collection) {
  return ucfirst(strtolower(preg_replace('/[\\W_]+/', ' ', $collection)));
}