function apps_profile_get_server_name in Apps 7
Generate the title of the Apps install screen
2 calls to apps_profile_get_server_name()
- apps_profile_apps_select_form in ./
apps.profile.inc - Apps install form
- apps_profile_install_tasks in ./
apps.profile.inc - Add install tasks to profile install tasks.
File
- ./
apps.profile.inc, line 646 - The install functions for the Apps module.
Code
function apps_profile_get_server_name($server) {
$t = get_t();
return isset($server['title']) ? $t('Install @name Apps', array(
'@name' => $server['title'],
)) : $t('Install Apps');
}