function apps_app_title in Apps 7
Title for the app detail page
1 string reference to 'apps_app_title'
- apps_menu in ./
apps.module - Implements hook_menu().
File
- ./
apps.pages.inc, line 17 - The page callbacks for the Apps module.
Code
function apps_app_title($app) {
return t("@title Details", array(
'@title' => $app['name'],
));
}