farm_api.api.php in farmOS 2.x
Hooks provided by farm_api.
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/core/api/farm_api.api.phpView source
<?php
/**
* @file
* Hooks provided by farm_api.
*
* 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.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* Alter the a "meta.farm" data in the root /api endpoint.
*
* @param array &$data
* The data to be altered.
*/
function hook_farm_api_meta_alter(array &$data) {
// Add a custom key.
$data['mykey'] = 'myvalue';
}
/**
* @} End of "addtogroup hooks".
*/
Functions
Name | Description |
---|---|
hook_farm_api_meta_alter | Alter the a "meta.farm" data in the root /api endpoint. |