You are here

function apps_server_title in Apps 7

Title for the App Server

1 string reference to 'apps_server_title'
apps_menu in ./apps.module
Implements hook_menu().

File

./apps.pages.inc, line 10
The page callbacks for the Apps module.

Code

function apps_server_title($server) {
  return t("@title Apps", array(
    '@title' => $server['title'],
  ));
}