Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

trackback_help

Definition

trackback_help($path, $arg)
contributions/trackback/trackback.module, line 12

Description

Implementation of hook_help().

Code

<?php
function trackback_help($path, $arg) {
  if ($path == 'admin/help#trackback') {
    module_load_include('inc', 'trackback', 'trackback.admin');
    return _trackback_help($path, $arg);
  }
}
?>