You are here

function meta_position_help in Meta position 8

Implements hook_help().

File

./meta_position.module, line 14
Contains meta_position.module.

Code

function meta_position_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the meta_position module.
    case 'help.page.meta_position':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provide settings to change the default position of the metadata panel on node edit form.') . '</p>';
      return $output;
    default:
  }
}