You are here

function commons_answers_og_create_links in Drupal Commons 6.2

Implementation of hook_og_create_links().

File

modules/features/commons_answers/commons_answers.module, line 130

Code

function commons_answers_og_create_links($group) {
  $links = array();
  $links['create_question'] = l(t('Question'), 'node/add/question');
  return $links;
}