You are here

function og_subscribe_link in Organic groups 5.8

Same name and namespace in other branches
  1. 5 og.module \og_subscribe_link()
  2. 5.2 og.module \og_subscribe_link()
  3. 5.3 og.module \og_subscribe_link()
  4. 5.7 og.module \og_subscribe_link()
  5. 6.2 og.module \og_subscribe_link()
  6. 6 og.module \og_subscribe_link()
2 calls to og_subscribe_link()
og_handler_field_subscribe in ./og_views.inc
Views handler to display the subscribe link
og_og_block_details in ./og.module

File

./og.module, line 2405

Code

function og_subscribe_link($node) {
  if ($node->og_selective == OG_MODERATED) {
    $txt = t('Request membership');
  }
  elseif ($node->og_selective == OG_OPEN) {
    $txt = t('Join');
  }
  if (isset($txt)) {
    return l($txt, "og/subscribe/{$node->nid}", array(
      'rel' => 'nofollow',
    ), drupal_get_destination());
  }
}