You are here

function service_links_share_share_tab in Service links 6.2

Implementation of hook_share_tab().

File

plugins/service_links_share.module, line 25
Provide the integration with Share module.

Code

function service_links_share_share_tab($op, $args, $node = NULL) {
  switch ($op) {
    case 'process':
      if (is_object($node)) {
        if (isset($node->service_links_rendered)) {
          return $node->service_links_rendered;
        }
      }
  }
}