You are here

function talk_activated in Talk 7

Same name and namespace in other branches
  1. 5 talk.module \talk_activated()
  2. 6 talk.module \talk_activated()

Is talk page option activated for node tpye?

6 calls to talk_activated()
talk_form_alter in ./talk.module
Implements hook_form_alter().
talk_node_load in ./talk.module
Implements hook_node_load().
talk_node_view in ./talk.module
Implements hook_node_view().
talk_permalink in ./talk.module
Page callback for talk view page.
talk_token_values in ./talk.module
Implements hook_token_values().

... See full list

File

./talk.module, line 270
Comments are displayed in a separate 'talk' tab, for node types you wish

Code

function talk_activated($node_type) {
  return variable_get('comment_talk_' . $node_type, FALSE);
}