You are here

farm_sensor.api.php in farmOS 7

Hooks provided by farm_sensor.

This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.

File

modules/farm/farm_sensor/farm_sensor.api.php
View source
<?php

/**
 * @file
 * Hooks provided by farm_sensor.
 *
 * This file contains no working PHP code; it exists to provide additional
 * documentation for doxygen as well as to document hooks in the standard
 * Drupal manner.
 */

/**
 * @defgroup farm_sensor Farm sensor module integrations.
 *
 * Module integrations with the farm_sensor module.
 */

/**
 * @defgroup farm_sensor_hooks Farm sensor's hooks
 * @{
 * Hooks that can be implemented by other modules in order to extend farm_sensor.
 */

/**
 * Provide information about farm sensor types.
 *
 * @return array
 *   Returns an array of sensor type information.
 */
function hook_farm_sensor_type_info() {
  return array(
    'mysensor' => array(
      'label' => t('My Sensor'),
      'description' => t('Description of my sensor.'),
      'form' => 'my_sensor_settings_form_callback',
    ),
  );
}

/**
 * Add content to the sensor view page.
 *
 * @param FarmAsset $asset
 *   The sensor asset.
 *
 * @return array
 *   Returns a build array to be merged into the sensor asset view page.
 */
function hook_farm_sensor_view($asset) {
  $build['mysensor'] = array(
    '#markup' => 'Add this to the sensor asset page!',
  );
  return $build;
}

/**
 * @}
 */

Functions

Namesort descending Description
hook_farm_sensor_type_info Provide information about farm sensor types.
hook_farm_sensor_view Add content to the sensor view page.