You are here

function hook_quickupdate_search_projects_alter in Quick update 7

Same name and namespace in other branches
  1. 8 quickupdate.api.php \hook_quickupdate_search_projects_alter()

Allows modules to alter the projects data.

1 invocation of hook_quickupdate_search_projects_alter()
quickupdate_get_search_projects in ./quickupdate.module
Gets a list of available projects to be searched.

File

./quickupdate.api.php, line 25
Hooks provided by Quick update module.

Code

function hook_quickupdate_search_projects_alter(&$projects) {
  $projects['modules']['views'] = t('Custom title');
  $projects['themes']['zen'] = t('Custom title');
}