You are here

function defaultcontent_help in Default Content 8

Implements hook_help

File

./defaultcontent.module, line 10

Code

function defaultcontent_help($route_name, $route_match) {
  if ($route_name == 'defaultcontent.admin' || $route_name == 'help.page.defaultcontent') {
    return "For best results export content using drush. " . "E.g. drush defaultcontent-export node 1 mymodule. " . "This will export both the node entity and its menu link into mymodule/content. " . "Using the export tab on each node will not give you the menu link file.";
  }
}