You are here

function _phptemplate_variables in Service links 5

@file Example template.php for service_links.module Use <?php print $service_links ?> to insert links in your node.tpl.php or you page.tpl.php file.

File

./template.php, line 9
Example template.php for service_links.module Use <?php print $service_links ?> to insert links in your node.tpl.php or you page.tpl.php file.

Code

function _phptemplate_variables($hook, $vars) {
  switch ($hook) {
    case 'node':
    case 'page':
      if (module_exists('service_links')) {
        $vars['service_links'] = theme('links', service_links_render($vars['node'], TRUE));
      }
      break;
  }
  return $vars;
}