You are here

function invite_page_title in Invite 6.2

Same name and namespace in other branches
  1. 7.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
Implementation of hook_menu().
invite_settings in ./invite_admin.inc
Menu callback; display invite settings form.
invite_uninstall in ./invite.install
Implementation of hook_uninstall().

File

./invite.module, line 277
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);
}