You are here

function typekit_help in Typekit 6

Implementation of hook_help().

File

./typekit.module, line 11
Main module file for typekit module

Code

function typekit_help($section) {
  switch ($section) {

    // Help page for Typekit
    case 'admin/help#typekit':
      $output = '<p>' . t('Easy way to include Typekit in your site.') . '</p>';
      return $output;
  }
}