function talk_title in Talk 5
Same name and namespace in other branches
- 6 talk.module \talk_title()
 - 7 talk.module \talk_title()
 
3 calls to talk_title()
- talk_admin_form in ./
talk.module  - Menu call back for admin form.
 - talk_link in ./
talk.module  - Implementation of hook_link().
 - talk_menu in ./
talk.module  - Implementation of hook_menu().
 
File
- ./
talk.module, line 73  - Comments are displayed in a separate 'talk' tab, for node types you wish Made for Drupal 5.x
 
Code
function talk_title($title = NULL) {
  if (is_null($title)) {
    return variable_get('talk_title', t('Talk'));
  }
  variable_set('talk_title', $title);
}