You are here

function invite_page_title in Invite 7.2

Same name and namespace in other branches
  1. 6.2 invite.module \invite_page_title()

Title callback allowing for customization of the invite page title.

Parameters

$title: The default page title, ie. non-overridden.

3 string references to 'invite_page_title'
invite_menu in ./invite.module
Implements hook_menu().
invite_settings in ./invite.admin.inc
Menu callback; display invite settings form.
invite_uninstall in ./invite.install
Implements hook_uninstall().

File

./invite.module, line 294
Allows your users to send and track invitations to join your site.

Code

function invite_page_title($title) {
  return variable_get('invite_page_title', $title);
}