You are here

function hook_farm_help_page in farmOS 7

Add output to the /farm/help page.

Return value

array Returns an array of actions and their meta information (see example below).

Related topics

1 function implements hook_farm_help_page()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

farm_help_farm_help_page in modules/farm/farm_help/farm_help.module
Implements hook_farm_help_page().
1 invocation of hook_farm_help_page()
farm_help_page_callback in modules/farm/farm_help/farm_help.module
Farm help page callback.

File

modules/farm/farm_help/farm_help.api.php, line 30
Hooks provided by farm_help.

Code

function hook_farm_help_page() {

  // Add a link to farmOS.rog
  $output = array(
    l('farmOS.org', 'https://farmos.org'),
  );
  return $output;
}