You are here

function _google_appliance_explode_tab in Google Search Appliance 6.2

Extract tab fields.

2 calls to _google_appliance_explode_tab()
google_appliance_catch_all_task_access in ./google_appliance.module
Menu access callback to prevent the catch-all LOCAL_TASK from triggering when one of the standard search tabs is active.
google_appliance_menu in ./google_appliance.module
Implementation of hook_menu().

File

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

Code

function _google_appliance_explode_tab($tab) {
  list($title, $path, $client, $collection) = explode("|", $tab);
  return array(
    'title' => $title,
    'path' => $path,
    'client' => $client,
    'collection' => $collection,
  );
}