You are here

template.php in Service links 5

Same filename and directory in other branches
  1. 6.2 template.php
  2. 6 template.php
  3. 7.2 template.php

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
View source
<?php

/**
 * @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.
 */
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;
}

Functions

Namesort descending Description
_phptemplate_variables @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.