2009-02-05 03:42:58 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup field_fieldable_type
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-08-19 13:31:14 +00:00
|
|
|
/**
|
|
|
|
* Expose "pseudo-field" components on fieldable objects.
|
|
|
|
*
|
|
|
|
* Field UI's 'Manage fields' page lets users re-order fields, but also
|
|
|
|
* non-field components. For nodes, that would be title, menu settings, or
|
|
|
|
* other elements exposed by contributed modules through hook_form() or
|
|
|
|
* hook_form_alter().
|
|
|
|
*
|
|
|
|
* Fieldable entities or contributed modules that want to have their components
|
|
|
|
* supported should expose them using this hook, and use
|
|
|
|
* field_attach_extra_weight() to retrieve the user-defined weight when
|
|
|
|
* inserting the component.
|
|
|
|
*
|
|
|
|
* @param $bundle
|
|
|
|
* The name of the bundle being considered.
|
|
|
|
* @return
|
|
|
|
* An array of 'pseudo-field' components. The keys are the name of the element
|
|
|
|
* as it appears in the form structure. The values are arrays with the
|
|
|
|
* following key/value pairs:
|
|
|
|
* - label: The human readable name of the component.
|
|
|
|
* - description: A short description of the component contents.
|
|
|
|
* - weight: The default weight of the element.
|
|
|
|
* - view: (optional) The name of the element as it appears in the rendered
|
|
|
|
* structure, if different from the name in the form.
|
|
|
|
*/
|
|
|
|
function hook_field_extra_fields($bundle) {
|
|
|
|
$extra = array();
|
|
|
|
|
|
|
|
if ($type = node_type_get_type($bundle)) {
|
|
|
|
if ($type->has_title) {
|
|
|
|
$extra['title'] = array(
|
|
|
|
'label' => $type->title_label,
|
|
|
|
'description' => t('Node module element.'),
|
|
|
|
'weight' => -5,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($bundle == 'poll' && module_exists('poll')) {
|
|
|
|
$extra['title'] = array(
|
|
|
|
'label' => t('Poll title'),
|
|
|
|
'description' => t('Poll module title.'),
|
|
|
|
'weight' => -5,
|
|
|
|
);
|
|
|
|
$extra['choice_wrapper'] = array(
|
|
|
|
'label' => t('Poll choices'),
|
|
|
|
'description' => t('Poll module choices.'),
|
|
|
|
'weight' => -4,
|
|
|
|
);
|
|
|
|
$extra['settings'] = array(
|
|
|
|
'label' => t('Poll settings'),
|
|
|
|
'description' => t('Poll module settings.'),
|
|
|
|
'weight' => -3,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $extra;
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_fieldable_type"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup field_types Field Types API
|
|
|
|
* @{
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* Define field types, widget types, display formatter types, storage types.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-08-01 06:03:48 +00:00
|
|
|
* The bulk of the Field Types API are related to field types. A field type
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* represents a particular type of data (integer, string, date, etc.) that
|
2009-08-01 06:03:48 +00:00
|
|
|
* can be attached to a fieldable object. hook_field_info() defines the basic
|
|
|
|
* properties of a field type, and a variety of other field hooks are called by
|
|
|
|
* the Field Attach API to perform field-type-specific actions.
|
|
|
|
* @see hook_field_info().
|
|
|
|
* @see hook_field_info_alter().
|
|
|
|
* @see hook_field_schema().
|
|
|
|
* @see hook_field_load().
|
|
|
|
* @see hook_field_validate().
|
|
|
|
* @see hook_field_presave().
|
|
|
|
* @see hook_field_insert().
|
|
|
|
* @see hook_field_update().
|
|
|
|
* @see hook_field_delete().
|
|
|
|
* @see hook_field_delete_revision().
|
|
|
|
* @see hook_field_sanitize().
|
2009-08-14 05:16:26 +00:00
|
|
|
* @see hook_field_is_empty().
|
2009-08-01 06:03:48 +00:00
|
|
|
*
|
|
|
|
* The Field Types API also defines two kinds of pluggable handlers: widgets
|
|
|
|
* and formatters, which specify how the field appears in edit forms and in
|
|
|
|
* displayed objects. Widgets and formatters can be implemented by a field-type
|
|
|
|
* module for it's own field types, or by a third-party module to extend the
|
|
|
|
* behavior of existing field types.
|
|
|
|
* @see hook_field_widget_info().
|
|
|
|
* @see hook_field_formatter_info().
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
*
|
|
|
|
* A third kind of pluggable handlers, storage backends, is defined by the
|
|
|
|
* @link field_storage Field Storage API @endlink.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define Field API field types.
|
|
|
|
*
|
|
|
|
* @return
|
2009-08-01 06:03:48 +00:00
|
|
|
* An array whose keys are field type names and whose values are arrays
|
|
|
|
* describing the field type, with the following key/value pairs:
|
|
|
|
* - label: The human-readable name of the field type.
|
|
|
|
* - description: A short description for the field type.
|
|
|
|
* - settings: An array whose keys are the names of the settings available
|
|
|
|
* for the field type, and whose values are the default values for those
|
|
|
|
* settings.
|
|
|
|
* - instance_settings: An array whose keys are the names of the settings
|
|
|
|
* available for instances of the field type, and whose values are the
|
|
|
|
* default values for those settings.
|
|
|
|
* Instance-level settings can have different values on each field
|
|
|
|
* instance, and thus allow greater flexibility than field-level settings.
|
|
|
|
* It is recommended to put settings at the instance level whenever
|
|
|
|
* possible. Notable exceptions: settings acting on the schema definition,
|
|
|
|
* or settings that Views needs to use across field instances (e.g. list of
|
|
|
|
* allowed values).
|
|
|
|
* - default_widget: The machine name of the default widget to be used by
|
|
|
|
* instances of this field type, when no widget is specified in the
|
|
|
|
* instance definition. This widget must be available whenever the field
|
|
|
|
* type is available (i.e. provided by the field type module, or by a module
|
|
|
|
* the field type module depends on).
|
|
|
|
* - default_formatter: The machine name of the default formatter to be used
|
|
|
|
* by instances of this field type, when no formatter is specified in the
|
|
|
|
* instance definition. This formatter must be available whenever the field
|
|
|
|
* type is available (i.e. provided by the field type module, or by a module
|
|
|
|
* the field type module depends on).
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
|
|
|
function hook_field_info() {
|
|
|
|
return array(
|
|
|
|
'text' => array(
|
|
|
|
'label' => t('Text'),
|
|
|
|
'description' => t('This field stores varchar text in the database.'),
|
|
|
|
'settings' => array('max_length' => 255),
|
|
|
|
'instance_settings' => array('text_processing' => 0),
|
|
|
|
'default_widget' => 'text_textfield',
|
|
|
|
'default_formatter' => 'text_default',
|
|
|
|
),
|
2009-08-01 06:03:48 +00:00
|
|
|
'text_long' => array(
|
|
|
|
'label' => t('Long text'),
|
2009-02-05 03:42:58 +00:00
|
|
|
'description' => t('This field stores long text in the database.'),
|
2009-08-01 06:03:48 +00:00
|
|
|
'settings' => array('max_length' => ''),
|
2009-02-05 03:42:58 +00:00
|
|
|
'instance_settings' => array('text_processing' => 0),
|
|
|
|
'default_widget' => 'text_textarea',
|
|
|
|
'default_formatter' => 'text_default',
|
|
|
|
),
|
2009-08-01 06:03:48 +00:00
|
|
|
'text_with_summary' => array(
|
|
|
|
'label' => t('Long text and summary'),
|
|
|
|
'description' => t('This field stores long text in the database along with optional summary text.'),
|
|
|
|
'settings' => array('max_length' => ''),
|
|
|
|
'instance_settings' => array('text_processing' => 1, 'display_summary' => 0),
|
|
|
|
'default_widget' => 'text_textarea_with_summary',
|
|
|
|
'default_formatter' => 'text_summary_or_trimmed',
|
|
|
|
),
|
2009-02-05 03:42:58 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-06-30 03:12:03 +00:00
|
|
|
/**
|
|
|
|
* Perform alterations on Field API field types.
|
|
|
|
*
|
|
|
|
* @param $info
|
|
|
|
* Array of informations on widget types exposed by hook_field_info()
|
|
|
|
* implementations.
|
|
|
|
*/
|
|
|
|
function hook_field_info_alter(&$info) {
|
|
|
|
// Add a setting to all field types.
|
|
|
|
foreach ($info as $field_type => $field_type_info) {
|
2009-07-30 19:35:47 +00:00
|
|
|
$info[$field_type]['settings'] += array(
|
|
|
|
'mymodule_additional_setting' => 'default value',
|
|
|
|
);
|
2009-06-30 03:12:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the default widget for fields of type 'foo'.
|
|
|
|
if (isset($info['foo'])) {
|
|
|
|
$info['foo']['default widget'] = 'mymodule_widget';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* Define the Field API schema for a field structure.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* A field structure.
|
|
|
|
* @return
|
2009-05-20 09:48:47 +00:00
|
|
|
* An associative array with the following keys:
|
2009-08-01 06:03:48 +00:00
|
|
|
* - columns: An array of Schema API column specifications, keyed by column name.
|
|
|
|
* This specifies what comprises a value for a given field.
|
2009-05-20 09:48:47 +00:00
|
|
|
* For example, a value for a number field is simply 'value', while a
|
|
|
|
* value for a formatted text field is the combination of 'value' and
|
|
|
|
* 'format'.
|
|
|
|
* It is recommended to avoid having the columns definitions depend on
|
|
|
|
* field settings when possible.
|
|
|
|
* No assumptions should be made on how storage engines internally use the
|
|
|
|
* original column name to structure their storage.
|
2009-08-01 06:03:48 +00:00
|
|
|
* - indexes: An array of Schema API indexes definitions. Only columns that
|
2009-05-20 09:48:47 +00:00
|
|
|
* appear in the 'columns' array are allowed.
|
|
|
|
* Those indexes will be used as default indexes. Callers of
|
|
|
|
* field_create_field() can specify additional indexes, or, at their own
|
|
|
|
* risk, modify the default indexes specified by the field-type module.
|
|
|
|
* Some storage engines might not support indexes.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-05-20 09:48:47 +00:00
|
|
|
function hook_field_schema($field) {
|
|
|
|
if ($field['type'] == 'text_long') {
|
2009-02-05 03:42:58 +00:00
|
|
|
$columns = array(
|
|
|
|
'value' => array(
|
|
|
|
'type' => 'text',
|
|
|
|
'size' => 'big',
|
|
|
|
'not null' => FALSE,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$columns = array(
|
|
|
|
'value' => array(
|
|
|
|
'type' => 'varchar',
|
|
|
|
'length' => $field['settings']['max_length'],
|
|
|
|
'not null' => FALSE,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$columns += array(
|
|
|
|
'format' => array(
|
|
|
|
'type' => 'int',
|
|
|
|
'unsigned' => TRUE,
|
|
|
|
'not null' => FALSE,
|
|
|
|
),
|
|
|
|
);
|
2009-05-20 09:48:47 +00:00
|
|
|
return array(
|
|
|
|
'columns' => $columns,
|
|
|
|
'indexes' => array(
|
|
|
|
'format' => array('format'),
|
|
|
|
),
|
|
|
|
);
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom load behavior for this module's field types.
|
|
|
|
*
|
2009-05-17 00:32:29 +00:00
|
|
|
* Unlike other field hooks, this hook operates on multiple objects. The
|
|
|
|
* $objects, $instances and $items parameters are arrays keyed by object id.
|
|
|
|
* For performance reasons, information for all available objects should be
|
|
|
|
* loaded in a single query where possible.
|
|
|
|
*
|
|
|
|
* Note that the changes made to the field values get cached by the
|
|
|
|
* field cache for subsequent loads.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
2009-05-17 00:32:29 +00:00
|
|
|
* @param $objects
|
|
|
|
* Array of objects being loaded, keyed by object id.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
2009-05-17 00:32:29 +00:00
|
|
|
* @param $instances
|
|
|
|
* Array of instance structures for $field for each object, keyed by object id.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-05-17 00:32:29 +00:00
|
|
|
* Array of field values already loaded for the objects, keyed by object id.
|
|
|
|
* @param $age
|
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all fields, or
|
|
|
|
* FIELD_LOAD_REVISION to load the version indicated by each object.
|
|
|
|
* @return
|
|
|
|
* Changes or additions to field values are done by altering the $items
|
|
|
|
* parameter by reference.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_load($obj_type, $objects, $field, $instances, $langcode, &$items, $age) {
|
2009-08-01 06:03:48 +00:00
|
|
|
foreach ($objects as $id => $object) {
|
|
|
|
foreach ($items[$id] as $delta => $item) {
|
|
|
|
if (!empty($instances[$id]['settings']['text_processing'])) {
|
|
|
|
// Only process items with a cacheable format, the rest will be
|
|
|
|
// handled by hook_field_sanitize().
|
|
|
|
$format = $item['format'];
|
|
|
|
if (filter_format_allowcache($format)) {
|
2009-10-10 21:39:03 +00:00
|
|
|
$items[$id][$delta]['safe'] = isset($item['value']) ? check_markup($item['value'], $format, $langcode) : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
if ($field['type'] == 'text_with_summary') {
|
2009-10-10 21:39:03 +00:00
|
|
|
$items[$id][$delta]['safe_summary'] = isset($item['summary']) ? check_markup($item['summary'], $format, $langcode) : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$items[$id][$delta]['safe'] = check_plain($item['value']);
|
|
|
|
if ($field['type'] == 'text_with_summary') {
|
|
|
|
$items[$id][$delta]['safe_summary'] = check_plain($item['summary']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom sanitize behavior for this module's field types.
|
|
|
|
*
|
|
|
|
* This hook is invoked just before the field values are handed to formatters
|
|
|
|
* for display. Formatters being essentially theme functions, it is important
|
|
|
|
* that any data sanitization happens outside the theme layer.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-08-01 06:03:48 +00:00
|
|
|
* @param $items
|
|
|
|
* $object->{$field['field_name']}, or an empty array if unset.
|
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_sanitize($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-08-01 06:03:48 +00:00
|
|
|
foreach ($items as $delta => $item) {
|
|
|
|
// Only sanitize items which were not already processed inside
|
|
|
|
// hook_field_load(), i.e. items with uncacheable text formats, or coming
|
|
|
|
// from a form preview.
|
|
|
|
if (!isset($items[$delta]['safe'])) {
|
|
|
|
if (!empty($instance['settings']['text_processing'])) {
|
|
|
|
$format = $item['format'];
|
2009-10-10 21:39:03 +00:00
|
|
|
$items[$delta]['safe'] = isset($item['value']) ? check_markup($item['value'], $format, $langcode, TRUE) : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
if ($field['type'] == 'text_with_summary') {
|
2009-10-10 21:39:03 +00:00
|
|
|
$items[$delta]['safe_summary'] = isset($item['summary']) ? check_markup($item['summary'], $format, $langcode, TRUE) : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$items[$delta]['safe'] = check_plain($item['value']);
|
|
|
|
if ($field['type'] == 'text_with_summary') {
|
|
|
|
$items[$delta]['safe_summary'] = check_plain($item['summary']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom validate behavior for this module's field types.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
2009-06-06 16:17:30 +00:00
|
|
|
* Note that this might not be a full-fledged 'object'. When invoked through
|
|
|
|
* field_attach_query(), the $object will only include properties that the
|
|
|
|
* Field API knows about: bundle, id, revision id, and field values (no node
|
|
|
|
* title, user name...).
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-03-26 13:31:28 +00:00
|
|
|
* @param $errors
|
|
|
|
* The array of errors, keyed by field name and by value delta, that have
|
|
|
|
* already been reported for the object. The function should add its errors
|
|
|
|
* to this array. Each error is an associative array, with the following
|
|
|
|
* keys and values:
|
|
|
|
* - 'error': an error code (should be a string, prefixed with the module name)
|
|
|
|
* - 'message': the human readable message to be displayed.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_validate($obj_type, $object, $field, $instance, $langcode, &$items, &$errors) {
|
2009-03-26 13:31:28 +00:00
|
|
|
foreach ($items as $delta => $item) {
|
|
|
|
if (!empty($item['value'])) {
|
|
|
|
if (!empty($field['settings']['max_length']) && drupal_strlen($item['value']) > $field['settings']['max_length']) {
|
|
|
|
$errors[$field['field_name']][$delta][] = array(
|
|
|
|
'error' => 'text_max_length',
|
|
|
|
'message' => t('%name: the value may not be longer than %max characters.', array('%name' => $instance['label'], '%max' => $field['settings']['max_length'])),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom presave behavior for this module's field types.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_presave($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom insert behavior for this module's field types.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_insert($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom update behavior for this module's field types.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_update($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Define custom delete behavior for this module's field types.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked just before the data is deleted from field storage.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_delete($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Define custom delete_revision behavior for this module's field types.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked just before the data is deleted from field storage,
|
|
|
|
* and will only be called for fieldable types that are versioned.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_delete_revision($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-01 06:03:48 +00:00
|
|
|
* Define custom prepare_translation behavior for this module's field types.
|
|
|
|
*
|
|
|
|
* TODO: This hook may or may not survive in Field API.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object.
|
|
|
|
* @param $object
|
|
|
|
* The object for the operation.
|
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
|
|
|
* The instance structure for $field on $object's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2009-08-22 00:58:55 +00:00
|
|
|
* $object->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_prepare_translation($obj_type, $object, $field, $instance, $langcode, &$items) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-08-14 05:16:26 +00:00
|
|
|
/**
|
|
|
|
* Define what constitutes an empty item for a field type.
|
|
|
|
*
|
|
|
|
* @param $item
|
|
|
|
* An item that may or may not be empty.
|
|
|
|
* @param $field
|
|
|
|
* The field to which $item belongs.
|
|
|
|
* @return
|
|
|
|
* TRUE if $field's type considers $item not to contain any data;
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function hook_field_is_empty($item, $field) {
|
|
|
|
if (empty($item['value']) && (string)$item['value'] !== '0') {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2009-08-01 06:03:48 +00:00
|
|
|
* Expose Field API widget types.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-08-01 06:03:48 +00:00
|
|
|
* Widgets are Form API elements with additional processing capabilities.
|
|
|
|
* Widget hooks are typically called by the Field Attach API during the
|
|
|
|
* creation of the field form structure with field_attach_form().
|
|
|
|
* @see hook_field_widget_info_alter().
|
|
|
|
* @see hook_field_widget().
|
|
|
|
* @see hook_field_widget_error().
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-08-01 06:03:48 +00:00
|
|
|
* @return
|
|
|
|
* An array describing the widget types implemented by the module.
|
|
|
|
*
|
|
|
|
* The keys are widget type names. To avoid name clashes, widget type
|
|
|
|
* names should be prefixed with the name of the module that exposes them.
|
|
|
|
*
|
|
|
|
* The values are arrays describing the widget type, with the following
|
|
|
|
* key/value pairs:
|
|
|
|
* - label: The human-readable name of the widget type.
|
|
|
|
* - description: A short description for the widget type.
|
|
|
|
* - field types: An array of field types the widget supports.
|
|
|
|
* - settings: An array whose keys are the names of the settings available
|
|
|
|
* for the widget type, and whose values are the default values for those
|
|
|
|
* settings.
|
|
|
|
* - behaviors: (optional) An array describing behaviors of the formatter.
|
|
|
|
* - multiple values:
|
|
|
|
* FIELD_BEHAVIOR_DEFAULT (default) if the widget allows the input of one
|
|
|
|
* single field value (most common case). The widget will be repeated for
|
|
|
|
* each value input.
|
|
|
|
* FIELD_BEHAVIOR_CUSTOM if one single copy of the widget can receive
|
|
|
|
* several field values. Examples: checkboxes, multiple select,
|
|
|
|
* comma-separated textfield...
|
|
|
|
* - default value:
|
|
|
|
* FIELD_BEHAVIOR_DEFAULT (default) if the widget accepts default values.
|
|
|
|
* FIELD_BEHAVIOR_NONE if the widget does not support default values.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-08-01 06:03:48 +00:00
|
|
|
function hook_field_widget_info() {
|
|
|
|
return array(
|
|
|
|
'text_textfield' => array(
|
|
|
|
'label' => t('Text field'),
|
|
|
|
'field types' => array('text'),
|
|
|
|
'settings' => array('size' => 60),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
'default value' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'text_textarea' => array(
|
|
|
|
'label' => t('Text area (multiple rows)'),
|
|
|
|
'field types' => array('text_long'),
|
|
|
|
'settings' => array('rows' => 5),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
'default value' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'text_textarea_with_summary' => array(
|
|
|
|
'label' => t('Text area with a summary'),
|
|
|
|
'field types' => array('text_with_summary'),
|
|
|
|
'settings' => array('rows' => 20, 'summary_rows' => 5),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
'default value' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform alterations on Field API widget types.
|
|
|
|
*
|
|
|
|
* @param $info
|
|
|
|
* Array of informations on widget types exposed by hook_field_widget_info()
|
|
|
|
* implementations.
|
|
|
|
*/
|
|
|
|
function hook_field_widget_info_alter(&$info) {
|
|
|
|
// Add a setting to a widget type.
|
|
|
|
$info['text_textfield']['settings'] += array(
|
|
|
|
'mymodule_additional_setting' => 'default value',
|
|
|
|
);
|
|
|
|
|
|
|
|
// Let a new field type re-use an existing widget.
|
|
|
|
$info['options_select']['field types'][] = 'my_field_type';
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a single form element for a form.
|
|
|
|
*
|
|
|
|
* It will be built out and validated in the callback(s) listed in
|
2009-09-10 06:31:39 +00:00
|
|
|
* hook_element_info(). We build it out in the callbacks rather than in
|
2009-02-05 03:42:58 +00:00
|
|
|
* hook_field_widget so it can be plugged into any module that can
|
|
|
|
* provide it with valid $field information.
|
|
|
|
*
|
|
|
|
* Field API will set the weight, field name and delta values for each
|
2009-02-10 03:16:15 +00:00
|
|
|
* form element. If there are multiple values for this field, the
|
2009-02-05 03:42:58 +00:00
|
|
|
* Field API will call this function as many times as needed.
|
|
|
|
*
|
|
|
|
* @param $form
|
2009-07-11 00:56:45 +00:00
|
|
|
* The entire form array.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $form_state
|
|
|
|
* The form_state, $form_state['values'][$field['field_name']]
|
|
|
|
* holds the field's form values.
|
|
|
|
* @param $field
|
|
|
|
* The field structure.
|
|
|
|
* @param $instance
|
|
|
|
* The field instance.
|
2009-08-27 00:33:52 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language associated to $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
|
|
|
* Array of default values for this field.
|
|
|
|
* @param $delta
|
|
|
|
* The order of this item in the array of subelements (0, 1, 2, etc).
|
|
|
|
* @return
|
|
|
|
* The form item for a single element for this field.
|
|
|
|
*/
|
2009-08-27 00:33:52 +00:00
|
|
|
function hook_field_widget(&$form, &$form_state, $field, $instance, $langcode, $items, $delta = 0) {
|
2009-02-05 03:42:58 +00:00
|
|
|
$element = array(
|
|
|
|
'#type' => $instance['widget']['type'],
|
|
|
|
'#default_value' => isset($items[$delta]) ? $items[$delta] : '',
|
|
|
|
);
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
2009-03-26 13:31:28 +00:00
|
|
|
/**
|
|
|
|
* Flag a field-level validation error.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An array containing the form element for the widget. The error needs to be
|
|
|
|
* flagged on the right sub-element, according to the widget's internal
|
|
|
|
* structure.
|
|
|
|
* @param $error
|
|
|
|
* An associative array with the following key-value pairs, as returned by
|
|
|
|
* hook_field_validate():
|
|
|
|
* - 'error': the error code. Complex widgets might need to report different
|
|
|
|
* errors to different form elements inside the widget.
|
|
|
|
* - 'message': the human readable message to be displayed.
|
|
|
|
*/
|
|
|
|
function hook_field_widget_error($element, $error) {
|
|
|
|
form_error($element['value'], $error['message']);
|
|
|
|
}
|
|
|
|
|
2009-08-01 06:03:48 +00:00
|
|
|
/**
|
|
|
|
* Expose Field API formatter types.
|
|
|
|
*
|
|
|
|
* Formatters are mainly theme functions that handle the output of individual
|
|
|
|
* field values. These theme calls are typically triggered during the execution
|
|
|
|
* of drupal_render() on the render structure built by field_attach_view().
|
|
|
|
*
|
|
|
|
* The name of the theme hook invoked when displaying the values is derived
|
2009-09-09 21:21:54 +00:00
|
|
|
* from formatter type names, using the pattern field_formatter_FORMATTER_NAME.
|
|
|
|
* field.module takes care of exposing the corresponding theme functions
|
2009-09-26 15:57:39 +00:00
|
|
|
* through hook_theme(). Specifically, field.module defines the theme
|
2009-09-09 21:21:54 +00:00
|
|
|
* hook:
|
|
|
|
*
|
|
|
|
* @code
|
|
|
|
* 'field_formatter_FORMATTER_NAME' => array(
|
|
|
|
* 'arguments' => array('element' => NULL),
|
|
|
|
* )
|
|
|
|
* @code
|
|
|
|
*
|
|
|
|
* If a formatter requires a different theme hook definition,
|
|
|
|
* implement hook_theme_registry_alter().
|
2009-08-01 06:03:48 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_formatter_info().
|
|
|
|
* @see hook_field_formatter_info_alter().
|
|
|
|
* @see theme_field_formatter_FORMATTER_NAME().
|
2009-09-09 21:21:54 +00:00
|
|
|
* @see hook_theme().
|
|
|
|
* @see hook_theme_registry_alter().
|
2009-08-01 06:03:48 +00:00
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* An array describing the formatter types implemented by the module.
|
|
|
|
*
|
|
|
|
* The keys are formatter type names. To avoid name clashes, formatter type
|
|
|
|
* names should be prefixed with the name of the module that exposes them.
|
|
|
|
*
|
|
|
|
* The values are arrays describing the formatter type, with the following
|
|
|
|
* key/value pairs:
|
|
|
|
* - label: The human-readable name of the formatter type.
|
|
|
|
* - description: A short description for the formatter type.
|
|
|
|
* - field types: An array of field types the formatter supports.
|
|
|
|
* - settings: An array whose keys are the names of the settings available
|
|
|
|
* for the formatter type, and whose values are the default values for
|
|
|
|
* those settings.
|
|
|
|
* - behaviors: (optional) An array describing behaviors of the formatter.
|
|
|
|
* - multiple values:
|
|
|
|
* FIELD_BEHAVIOR_DEFAULT (default) if the formatter displays one single
|
|
|
|
* field value (most common case). The formatter theme will be invoked
|
|
|
|
* iteratively on each of the field valies.
|
|
|
|
* FIELD_BEHAVIOR_CUSTOM if one single invocation of the formatter theme
|
|
|
|
* takes care of displays all the field values. Examples: points on
|
|
|
|
* a generated graph picture, a Google map, a single link to a popup...
|
|
|
|
*/
|
|
|
|
function hook_field_formatter_info() {
|
|
|
|
return array(
|
|
|
|
'text_default' => array(
|
|
|
|
'label' => t('Default'),
|
|
|
|
'field types' => array('text', 'text_long', 'text_with_summary'),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'text_plain' => array(
|
|
|
|
'label' => t('Plain text'),
|
|
|
|
'field types' => array('text', 'text_long', 'text_with_summary'),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
// The text_trimmed formatter displays the trimmed version of the
|
|
|
|
// full element of the field. It is intended to be used with text
|
|
|
|
// and text_long fields. It also works with text_with_summary
|
|
|
|
// fields though the text_summary_or_trimmed formatter makes more
|
|
|
|
// sense for that field type.
|
|
|
|
'text_trimmed' => array(
|
|
|
|
'label' => t('Trimmed'),
|
|
|
|
'field types' => array('text', 'text_long', 'text_with_summary'),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
// The 'summary or trimmed' field formatter for text_with_summary
|
|
|
|
// fields displays returns the summary element of the field or, if
|
|
|
|
// the summary is empty, the trimmed version of the full element
|
|
|
|
// of the field.
|
|
|
|
'text_summary_or_trimmed' => array(
|
|
|
|
'label' => t('Summary or trimmed'),
|
|
|
|
'field types' => array('text_with_summary'),
|
|
|
|
'behaviors' => array(
|
|
|
|
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform alterations on Field API formatter types.
|
|
|
|
*
|
|
|
|
* @param $info
|
|
|
|
* Array of informations on formatter types exposed by
|
|
|
|
* hook_field_field_formatter_info() implementations.
|
|
|
|
*/
|
|
|
|
function hook_field_formatter_info_alter(&$info) {
|
|
|
|
// Add a setting to a formatter type.
|
|
|
|
$info['text_default']['settings'] += array(
|
|
|
|
'mymodule_additional_setting' => 'default value',
|
|
|
|
);
|
|
|
|
|
|
|
|
// Let a new field type re-use an existing formatter.
|
|
|
|
$info['text_default']['field types'][] = 'my_field_type';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Theme function for a field formatter.
|
|
|
|
*
|
|
|
|
* This is an example of a 'single' formatter, displaying one single field
|
|
|
|
* value (the hook_field_formatter_info() entry uses
|
|
|
|
* 'multiple values' = FIELD_BEHAVIOR_DEFAULT).
|
|
|
|
*
|
2009-10-09 01:00:08 +00:00
|
|
|
* @param $variables
|
|
|
|
* An associative array containing:
|
|
|
|
* - element: A render structure sub-array, containing the following keys:
|
|
|
|
* - #item: The field value being displayed.
|
|
|
|
* - #delta: The index of the value being displayed within the object's
|
|
|
|
* values for the field.
|
|
|
|
* - #field_name: The name of the field being displayed.
|
|
|
|
* - #bundle: The bundle of the object being displayed.
|
|
|
|
* - #object: The object being displayed.
|
|
|
|
* - #object_type: The type of the object being displayed.
|
|
|
|
* - #formatter: The name of the formatter being used.
|
|
|
|
* - #settings: The array of formatter settings.
|
2009-08-01 06:03:48 +00:00
|
|
|
*/
|
2009-10-09 01:00:08 +00:00
|
|
|
function theme_field_formatter_FORMATTER_SINGLE($variables) {
|
2009-08-01 06:03:48 +00:00
|
|
|
// This relies on a 'safe' element being prepared in hook_field_sanitize().
|
2009-10-09 01:00:08 +00:00
|
|
|
return $variables['element']['#item']['safe'];
|
2009-08-01 06:03:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Theme function for a field formatter.
|
|
|
|
*
|
|
|
|
* This is an example of a 'single' formatter, displaying all the field values
|
|
|
|
* (the hook_field_formatter_info() entry uses
|
|
|
|
* 'multiple values' = FIELD_BEHAVIOR_CUSTOM).
|
|
|
|
*
|
2009-10-09 01:00:08 +00:00
|
|
|
* @param $variables
|
|
|
|
* An associative array containing:
|
|
|
|
* - element: A render structure sub-array, containing the following keys:
|
|
|
|
* - #field_name: The name of the field being displayed.
|
|
|
|
* - #bundle: The bundle of the object being displayed.
|
|
|
|
* - #object: The object being displayed.
|
|
|
|
* - #object_type: The type of the object being displayed.
|
|
|
|
* - #formatter: The name of the formatter being used.
|
|
|
|
* - #settings: The array of formatter settings.
|
|
|
|
* - numeric indexes: the field values being displayed.
|
2009-08-01 06:03:48 +00:00
|
|
|
*/
|
2009-10-09 01:00:08 +00:00
|
|
|
function theme_field_formatter_FORMATTER_MULTIPLE($variables) {
|
|
|
|
$element = $variables['element'];
|
|
|
|
|
2009-08-01 06:03:48 +00:00
|
|
|
$items = array();
|
|
|
|
foreach (element_children($element) as $key) {
|
|
|
|
$items[$key] = $key .':'. $element[$key]['#item']['value'];
|
|
|
|
}
|
|
|
|
$output = implode('|', $items);
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_type"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup field_attach
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_form.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_form() for details and arguments.
|
|
|
|
*/
|
2009-08-22 00:58:55 +00:00
|
|
|
function hook_field_attach_form($obj_type, $object, &$form, &$form_state, $langcode) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-03-30 03:44:55 +00:00
|
|
|
/**
|
|
|
|
* Act on field_attach_pre_load.
|
|
|
|
*
|
|
|
|
* This hook allows modules to load data before the Field Storage API,
|
|
|
|
* optionally preventing the field storage module from doing so.
|
|
|
|
*
|
|
|
|
* This lets 3rd party modules override, mirror, shard, or otherwise store a
|
|
|
|
* subset of fields in a different way than the current storage engine.
|
|
|
|
* Possible use cases include : per-bundle storage, per-combo-field storage...
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of objects for which to load fields; e.g. 'node' or 'user'.
|
|
|
|
* @param $objects
|
2009-05-17 00:32:29 +00:00
|
|
|
* An array of objects for which to load fields, keyed by object id.
|
2009-03-30 03:44:55 +00:00
|
|
|
* @param $age
|
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all fields, or
|
|
|
|
* FIELD_LOAD_REVISION to load the version indicated by each object.
|
|
|
|
* @param $skip_fields
|
2009-08-11 14:59:40 +00:00
|
|
|
* An array keyed by field ids whose data has already been loaded and
|
2009-03-30 03:44:55 +00:00
|
|
|
* therefore should not be loaded again. The values associated to these keys
|
|
|
|
* are not specified.
|
|
|
|
* @return
|
2009-05-17 00:32:29 +00:00
|
|
|
* - Loaded field values are added to $objects. Fields with no values should be
|
|
|
|
* set as an empty array.
|
2009-08-11 14:59:40 +00:00
|
|
|
* - Loaded field ids are set as keys in $skip_fields.
|
2009-03-30 03:44:55 +00:00
|
|
|
*/
|
2009-06-03 02:41:07 +00:00
|
|
|
function hook_field_attach_pre_load($obj_type, $objects, $age, &$skip_fields) {
|
2009-03-30 03:44:55 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_load.
|
2009-03-30 03:44:55 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-05-17 00:32:29 +00:00
|
|
|
* Unlike other field_attach hooks, this hook accounts for 'multiple loads'.
|
2009-06-06 16:17:30 +00:00
|
|
|
* Instead of the usual $object parameter, it accepts an array of objects,
|
|
|
|
* indexed by object id. For performance reasons, information for all available
|
|
|
|
* objects should be loaded in a single query where possible.
|
2009-05-17 00:32:29 +00:00
|
|
|
*
|
2009-06-06 16:17:30 +00:00
|
|
|
* Note that $objects might not be full-fledged 'objects'. When invoked through
|
|
|
|
* field_attach_query(), each object only includes properties that the Field
|
|
|
|
* API knows about: bundle, id, revision id, and field values (no node title,
|
|
|
|
* user name...)
|
|
|
|
|
|
|
|
* The changes made to the objects' field values get cached by the field cache
|
|
|
|
* for subsequent loads.
|
2009-05-17 00:32:29 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* See field_attach_load() for details and arguments.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-06-03 02:41:07 +00:00
|
|
|
function hook_field_attach_load($obj_type, $objects, $age) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_validate.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_validate() for details and arguments.
|
|
|
|
*/
|
2009-03-26 13:31:28 +00:00
|
|
|
function hook_field_attach_validate($obj_type, $object, &$errors) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_submit.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_submit() for details and arguments.
|
|
|
|
*/
|
|
|
|
function hook_field_attach_submit($obj_type, $object, $form, &$form_state) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_presave.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_presave() for details and arguments.
|
|
|
|
*/
|
|
|
|
function hook_field_attach_presave($obj_type, $object) {
|
|
|
|
}
|
|
|
|
|
2009-08-22 00:58:55 +00:00
|
|
|
/**
|
|
|
|
* Act on field_attach_preprocess.
|
|
|
|
*
|
|
|
|
* This hook is invoked while preprocessing the field.tpl.php template file.
|
|
|
|
*
|
|
|
|
* @param $variables
|
2009-10-13 16:38:43 +00:00
|
|
|
* The variables array is passed by reference and will be populated with field
|
|
|
|
* values.
|
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
|
|
|
* - obj_type: The type of $object; e.g. 'node' or 'user'.
|
|
|
|
* - object: The object with fields to render.
|
|
|
|
* - element: The structured array containing the values ready for rendering.
|
2009-08-22 00:58:55 +00:00
|
|
|
*/
|
2009-10-13 16:38:43 +00:00
|
|
|
function hook_field_attach_preprocess_alter(&$variables, $context) {
|
2009-08-22 00:58:55 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_insert.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-03-30 03:44:55 +00:00
|
|
|
* This hook allows modules to store data before the Field Storage
|
|
|
|
* API, optionally preventing the field storage module from doing so.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object; e.g. 'node' or 'user'.
|
|
|
|
* @param $object
|
|
|
|
* The object with fields to save.
|
|
|
|
* @param $skip_fields
|
2009-08-11 14:59:40 +00:00
|
|
|
* An array keyed by field ids whose data has already been written and
|
2009-03-30 03:44:55 +00:00
|
|
|
* therefore should not be written again. The values associated to these keys
|
|
|
|
* are not specified.
|
|
|
|
* @return
|
2009-08-11 14:59:40 +00:00
|
|
|
* Saved field ids are set set as keys in $skip_fields.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-03-30 03:44:55 +00:00
|
|
|
function hook_field_attach_pre_insert($obj_type, $object, &$skip_fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_update.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-03-30 03:44:55 +00:00
|
|
|
* This hook allows modules to store data before the Field Storage
|
|
|
|
* API, optionally preventing the field storage module from doing so.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object; e.g. 'node' or 'user'.
|
|
|
|
* @param $object
|
|
|
|
* The object with fields to save.
|
|
|
|
* @param $skip_fields
|
2009-08-11 14:59:40 +00:00
|
|
|
* An array keyed by field ids whose data has already been written and
|
2009-03-30 03:44:55 +00:00
|
|
|
* therefore should not be written again. The values associated to these keys
|
|
|
|
* are not specified.
|
|
|
|
* @return
|
2009-08-11 14:59:40 +00:00
|
|
|
* Saved field ids are set set as keys in $skip_fields.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-03-30 03:44:55 +00:00
|
|
|
function hook_field_attach_pre_update($obj_type, $object, &$skip_fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 16:17:30 +00:00
|
|
|
/**
|
|
|
|
* Act on field_attach_pre_query.
|
|
|
|
*
|
|
|
|
* This hook should be implemented by modules that use
|
|
|
|
* hook_field_attach_pre_load(), hook_field_attach_pre_insert() and
|
|
|
|
* hook_field_attach_pre_update() to bypass the regular storage engine, to
|
|
|
|
* handle field queries.
|
|
|
|
*
|
|
|
|
* @param $field_name
|
|
|
|
* The name of the field to query.
|
|
|
|
* @param $conditions
|
|
|
|
* See field_attach_query().
|
|
|
|
* A storage module that doesn't support querying a given column should raise
|
|
|
|
* a FieldQueryException. Incompatibilities should be mentioned on the module
|
|
|
|
* project page.
|
2009-07-15 17:55:18 +00:00
|
|
|
* @param $count
|
|
|
|
* See field_attach_query().
|
|
|
|
* @param $cursor
|
2009-06-06 16:17:30 +00:00
|
|
|
* See field_attach_query().
|
|
|
|
* @param $age
|
|
|
|
* - FIELD_LOAD_CURRENT: query the most recent revisions for all
|
|
|
|
* objects. The results will be keyed by object type and object id.
|
|
|
|
* - FIELD_LOAD_REVISION: query all revisions. The results will be keyed by
|
|
|
|
* object type and object revision id.
|
|
|
|
* @param $skip_field
|
|
|
|
* Boolean, always coming as FALSE.
|
|
|
|
* @return
|
|
|
|
* See field_attach_query().
|
|
|
|
* The $skip_field parameter should be set to TRUE if the query has been
|
|
|
|
* handled.
|
|
|
|
*/
|
2009-07-15 17:55:18 +00:00
|
|
|
function hook_field_attach_pre_query($field_name, $conditions, $count, &$cursor = NULL, $age, &$skip_field) {
|
2009-06-06 16:17:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_delete.
|
2009-03-30 03:44:55 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_delete() for details and arguments.
|
|
|
|
*/
|
|
|
|
function hook_field_attach_delete($obj_type, $object) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_delete_revision.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_delete_revision() for details and arguments.
|
|
|
|
*/
|
|
|
|
function hook_field_attach_delete_revision($obj_type, $object) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_view.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-10-13 16:38:43 +00:00
|
|
|
* @param &$output
|
|
|
|
* The structured content array tree for all of $object's fields.
|
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
|
|
|
* - obj_type: The type of $object; e.g. 'node' or 'user'.
|
|
|
|
* - object: The object with fields to render.
|
|
|
|
* - build_mode: Build mode, e.g. 'full', 'teaser'...
|
|
|
|
* - langcode: The language in which the field values will be displayed.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-10-13 16:38:43 +00:00
|
|
|
function hook_field_attach_view_alter(&$output, $context) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_create_bundle.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_create_bundle() for details and arguments.
|
|
|
|
*/
|
|
|
|
function hook_field_attach_create_bundle($bundle) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_rename_bundle.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* See field_attach_rename_bundle() for details and arguments.
|
|
|
|
*/
|
2009-06-27 02:11:34 +00:00
|
|
|
function hook_field_attach_rename_bundle($bundle_old, $bundle_new) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on field_attach_delete_bundle.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-04-26 09:18:20 +00:00
|
|
|
* @param $bundle
|
|
|
|
* The bundle that was just deleted.
|
|
|
|
* @param $instances
|
|
|
|
* An array of all instances that existed for $bundle before it was
|
|
|
|
* deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-04-26 09:18:20 +00:00
|
|
|
function hook_field_attach_delete_bundle($bundle, $instances) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_attach"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Field Storage API
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup field_storage
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
/**
|
|
|
|
* Expose Field API storage backends.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* An array describing the storage backends implemented by the module.
|
|
|
|
* The keys are storage backend names. To avoid name clashes, storage backend
|
|
|
|
* names should be prefixed with the name of the module that exposes them.
|
|
|
|
* The values are arrays describing the storage backend, with the following
|
|
|
|
* key/value pairs:
|
|
|
|
* - label: The human-readable name of the storage backend.
|
|
|
|
* - description: A short description for the storage backend.
|
|
|
|
* - settings: An array whose keys are the names of the settings available
|
|
|
|
* for the storage backend, and whose values are the default values for
|
|
|
|
* those settings.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_info() {
|
|
|
|
return array(
|
|
|
|
'field_sql_storage' => array(
|
|
|
|
'label' => t('Default SQL storage'),
|
|
|
|
'description' => t('Stores fields in the local SQL database, using per-field tables.'),
|
|
|
|
'settings' => array(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform alterations on Field API storage types.
|
|
|
|
*
|
|
|
|
* @param $info
|
|
|
|
* Array of informations on storage types exposed by
|
|
|
|
* hook_field_field_storage_info() implementations.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_info_alter(&$info) {
|
|
|
|
// Add a setting to a storage type.
|
|
|
|
$info['field_sql_storage']['settings'] += array(
|
|
|
|
'mymodule_additional_setting' => 'default value',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-10-14 14:55:12 +00:00
|
|
|
/**
|
|
|
|
* Reveal the internal details about the storage for a field.
|
|
|
|
*
|
|
|
|
* For example, an SQL storage module might return the Schema API structure for
|
|
|
|
* the table. A key/value storage module might return the server name,
|
|
|
|
* authentication credentials, and bin name.
|
|
|
|
*
|
|
|
|
* Field storage modules are not obligated to implement this hook. Modules
|
|
|
|
* that rely on these details must only use them for read operations.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* A field structure.
|
|
|
|
* @param $instance
|
|
|
|
* A field instance structure.
|
|
|
|
* @return
|
|
|
|
* An array of details.
|
|
|
|
* - The first dimension is a store type (sql, solr, etc).
|
|
|
|
* - The second dimension indicates the age of the values in the store
|
|
|
|
* FIELD_LOAD_CURRENT or FIELD_LOAD_REVISION.
|
|
|
|
* - Other dimensions are specific to the field storage module.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_details($field, $instance) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform alterations on Field API storage details.
|
|
|
|
*
|
|
|
|
* The storage details are appended to the field instance structure after this
|
|
|
|
* hook is invoked. Read and alter the $details only.
|
|
|
|
*
|
|
|
|
* @param $details
|
|
|
|
* An array of storage details for fields as exposed by
|
|
|
|
* hook_field_storage_details() implementations.
|
|
|
|
* @param $field
|
|
|
|
* A field structure.
|
|
|
|
* @param $instance
|
|
|
|
* A field instance structure.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_details_alter(&$details, $field, $instance) {
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* Load field data for a set of objects.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
2009-05-17 00:32:29 +00:00
|
|
|
* The entity type of object, such as 'node' or 'user'.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $objects
|
2009-05-17 00:32:29 +00:00
|
|
|
* The array of objects for which to load data, keyed by object id.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $age
|
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all
|
|
|
|
* fields, or FIELD_LOAD_REVISION to load the version indicated by
|
|
|
|
* each object.
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $fields
|
|
|
|
* An array listing the fields to be loaded. The keys of the array are field
|
|
|
|
* ids, the values of the array are the object ids (or revision ids,
|
|
|
|
* depending on the $age parameter) to be loaded for each field.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @return
|
2009-05-17 00:32:29 +00:00
|
|
|
* Loaded field values are added to $objects. Fields with no values should be
|
|
|
|
* set as an empty array.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_load($obj_type, $objects, $age, $fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write field data for an object.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The entity type of object, such as 'node' or 'user'.
|
|
|
|
* @param $object
|
|
|
|
* The object on which to operate.
|
2009-03-13 21:25:40 +00:00
|
|
|
* @param $op
|
|
|
|
* FIELD_STORAGE_UPDATE when updating an existing object,
|
|
|
|
* FIELD_STORAGE_INSERT when inserting a new object.
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $fields
|
|
|
|
* An array listing the fields to be written. The keys and values of the
|
|
|
|
* array are field ids.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_write($obj_type, $object, $op, $fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all field data for an object.
|
|
|
|
*
|
|
|
|
* @param $obj_type
|
|
|
|
* The entity type of object, such as 'node' or 'user'.
|
|
|
|
* @param $object
|
|
|
|
* The object on which to operate.
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $fields
|
|
|
|
* An array listing the fields to delete. The keys and values of the
|
|
|
|
* array are field ids.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_delete($obj_type, $object, $fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a single revision of field data for an object.
|
|
|
|
*
|
2009-03-30 03:44:55 +00:00
|
|
|
* Deleting the current (most recently written) revision is not
|
|
|
|
* allowed as has undefined results.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $obj_type
|
|
|
|
* The entity type of object, such as 'node' or 'user'.
|
|
|
|
* @param $object
|
2009-02-10 03:16:15 +00:00
|
|
|
* The object on which to operate. The revision to delete is
|
2009-02-05 03:42:58 +00:00
|
|
|
* indicated by the object's revision id property, as identified by
|
|
|
|
* hook_fieldable_info() for $obj_type.
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $fields
|
|
|
|
* An array listing the fields to delete. The keys and values of the
|
|
|
|
* array are field ids.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_delete_revision($obj_type, $object, $fields) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 16:17:30 +00:00
|
|
|
/**
|
|
|
|
* Handle a field query.
|
|
|
|
*
|
|
|
|
* @param $field_name
|
|
|
|
* The name of the field to query.
|
|
|
|
* @param $conditions
|
|
|
|
* See field_attach_query().
|
|
|
|
* A storage module that doesn't support querying a given column should raise
|
|
|
|
* a FieldQueryException. Incompatibilities should be mentioned on the module
|
|
|
|
* project page.
|
2009-07-15 17:55:18 +00:00
|
|
|
* @param $count
|
|
|
|
* See field_attach_query().
|
|
|
|
* @param $cursor
|
2009-06-06 16:17:30 +00:00
|
|
|
* See field_attach_query().
|
|
|
|
* @param $age
|
|
|
|
* See field_attach_query().
|
|
|
|
* @return
|
|
|
|
* See field_attach_query().
|
|
|
|
*/
|
2009-07-15 17:55:18 +00:00
|
|
|
function hook_field_storage_query($field_name, $conditions, $count, &$cursor = NULL, $age) {
|
2009-06-06 16:17:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* Act on creation of a new field.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field structure being created.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_create_field($field) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on deletion of a field.
|
|
|
|
*
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $field
|
|
|
|
* The field being deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_delete_field($field) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on deletion of a field instance.
|
|
|
|
*
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
* @param $instance
|
|
|
|
* The instance being deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
- Patch #443422 by yched, bjaspan | chx, merlinofchaos, Scott Reynolds, plach, profix898, mattyoung: added support for pluggable 'per field' storage engine. Comes with documentation and tests.
The Field Attach API uses the Field Storage API to perform all "database access". Each Field Storage API hook function defines a primitive database operation such as read, write, or delete. The default field storage module, field_sql_storage.module, uses the local SQL database to implement these operations, but alternative field storage backends can choose to represent the data in SQL differently or use a completely different storage mechanism such as a cloud-based database.
2009-09-27 12:52:55 +00:00
|
|
|
function hook_field_storage_delete_instance($instance) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_storage"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Field CRUD API
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup field_crud
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field being created.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the field is created and so it cannot modify the
|
|
|
|
* field itself.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* TODO: Not implemented.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field just created.
|
|
|
|
*/
|
|
|
|
function hook_field_create_field($field) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being created.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the instance record is saved and so it cannot
|
|
|
|
* modify the instance itself.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance just created.
|
|
|
|
*/
|
|
|
|
function hook_field_create_instance($instance) {
|
|
|
|
}
|
|
|
|
|
2009-09-26 15:57:39 +00:00
|
|
|
/**
|
|
|
|
* Forbid a field update from occurring.
|
|
|
|
*
|
|
|
|
* Any module may forbid any update for any reason. For example, the
|
|
|
|
* field's storage module might forbid an update if it would change
|
|
|
|
* the storage schema while data for the field exists. A field type
|
|
|
|
* module might forbid an update if it would change existing data's
|
|
|
|
* semantics, or if there are external dependencies on field settings
|
|
|
|
* that cannot be updated.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field as it will be post-update.
|
|
|
|
* @param $prior_field
|
|
|
|
* The field as it is pre-update.
|
|
|
|
* @param $has_data
|
|
|
|
* Whether any data already exists for this field.
|
|
|
|
* @return
|
2009-09-30 12:26:36 +00:00
|
|
|
* Throws a FieldUpdateForbiddenException to prevent the update from occuring.
|
2009-09-26 15:57:39 +00:00
|
|
|
*/
|
|
|
|
function hook_field_update_field_forbid($field, $prior_field, $has_data) {
|
|
|
|
// A 'list' field stores integer keys mapped to display values. If
|
|
|
|
// the new field will have fewer values, and any data exists for the
|
|
|
|
// abandonded keys, the field will have no way to display them. So,
|
|
|
|
// forbid such an update.
|
|
|
|
if ($has_data && count($field['settings']['allowed_values']) < count($prior_field['settings']['allowed_values'])) {
|
|
|
|
// Identify the keys that will be lost.
|
|
|
|
$lost_keys = array_diff(array_keys($field['settings']['allowed_values']), array_keys($prior_field['settings']['allowed_values']));
|
|
|
|
// If any data exist for those keys, forbid the update.
|
|
|
|
$count = field_attach_query($prior_field['id'], array('value', $lost_keys, 'IN'), 1);
|
|
|
|
if ($count > 0) {
|
2009-09-30 12:26:36 +00:00
|
|
|
throw new FieldUpdateForbiddenException("Cannot update a list field not to include keys with existing data");
|
2009-09-26 15:57:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on a field being updated.
|
|
|
|
*
|
|
|
|
* This hook is invoked just after field is updated.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field as it is post-update.
|
|
|
|
* @param $prior_field
|
|
|
|
* The field as it was pre-update.
|
|
|
|
* @param $has_data
|
|
|
|
* Whether any data already exists for this field.
|
|
|
|
*/
|
|
|
|
function hook_field_update_field($field, $prior_field, $has_data) {
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field being deleted.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-09-09 11:37:34 +00:00
|
|
|
* This hook is invoked just after field is deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $field
|
2009-09-09 11:37:34 +00:00
|
|
|
* The field just deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
|
|
|
function hook_field_delete_field($field) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being updated.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-03-17 03:46:51 +00:00
|
|
|
* This hook is invoked after the instance record is saved and so it cannot
|
|
|
|
* modify the instance itself.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* TODO: Not implemented.
|
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance just updated.
|
|
|
|
*/
|
|
|
|
function hook_field_update_instance($instance) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being deleted.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2009-09-09 11:37:34 +00:00
|
|
|
* This hook is invoked just after the instance is deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $instance
|
2009-09-09 11:37:34 +00:00
|
|
|
* The instance just deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
|
|
|
function hook_field_delete_instance($instance) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on field records being read from the database.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field record just read from the database.
|
|
|
|
*/
|
|
|
|
function hook_field_read_field($field) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on a field record being read from the database.
|
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance record just read from the database.
|
|
|
|
*/
|
|
|
|
function hook_field_read_instance($instance) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_crud"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TODO: I'm not sure where these belong yet.
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO
|
|
|
|
*
|
|
|
|
* Note : Right now this belongs to the "Fieldable Type API".
|
|
|
|
* Whether 'build modes' is actually a 'fields' concept is to be debated
|
|
|
|
* in a separate overhaul patch for core.
|
|
|
|
*/
|
|
|
|
function hook_field_build_modes($obj_type) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether the user has access to a given field.
|
|
|
|
*
|
|
|
|
* @param $op
|
|
|
|
* The operation to be performed. Possible values:
|
|
|
|
* - "edit"
|
|
|
|
* - "view"
|
|
|
|
* @param $field
|
|
|
|
* The field on which the operation is to be performed.
|
2009-10-09 19:22:56 +00:00
|
|
|
* @param $obj_type
|
|
|
|
* The type of $object; e.g. 'node' or 'user'.
|
|
|
|
* @param $object
|
|
|
|
* (optional) The object for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $account
|
|
|
|
* (optional) The account to check, if not given use currently logged in user.
|
|
|
|
* @return
|
|
|
|
* TRUE if the operation is allowed;
|
|
|
|
* FALSE if the operation is denied.
|
|
|
|
*/
|
2009-10-09 19:22:56 +00:00
|
|
|
function hook_field_access($op, $field, $obj_type, $object, $account) {
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|