You are here

function relation_class_help in Subform 5

Implementation of hook_help() Display help text for the relation_class module

File

./relation_class.module, line 12
CRUD, and manage relation_classes and relation_class lists

Code

function relation_class_help($section) {
  switch ($section) {
    case 'admin/help#relation_class':
      $o .= '<p>' . t('CRUD, and manage relation_classes and relation_class lists.') . '</p>';
      return $o;
    case 'node/add#relation_class':
      return t('Defines a type of relationship that can exist between nodes.');
  }
}