wsfields.api.php in Web Service Data 7
API Documentation for wsfields
@author David Pascoe-Deslauriers <dpascoed@coldfrontlabs.ca> @author Mathew Winstone <mwinstone@coldfrontlabs.ca>
File
modules/wsfields/wsfields.api.phpView source
<?php
/**
* @file
* API Documentation for wsfields
*
* @author David Pascoe-Deslauriers <dpascoed@coldfrontlabs.ca>
* @author Mathew Winstone <mwinstone@coldfrontlabs.ca>
*/
/**
* Allows modules to alter and format field data prior to it being added to
* a field instance.
*
* @param array $instance
* Instance of a field
* @return array
* Returns a formatted array for use in a field instance
*/
function hook_wsfields_FIELD_TYPE_data_alter($data, $instance) {
}
/**
* Allows modules to log or otherwise deal with updates to entity expires information
*/
function hook_wsfields_entity_expires($entity_type, $entity_id, $expire) {
}
Functions
Name | Description |
---|---|
hook_wsfields_entity_expires | Allows modules to log or otherwise deal with updates to entity expires information |
hook_wsfields_FIELD_TYPE_data_alter | Allows modules to alter and format field data prior to it being added to a field instance. |