2009-02-05 03:42:58 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup field_fieldable_type
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-08-19 13:31:14 +00:00
|
|
|
/**
|
2010-02-12 05:38:10 +00:00
|
|
|
* Expose "pseudo-field" components on fieldable entities.
|
2009-08-19 13:31:14 +00:00
|
|
|
*
|
|
|
|
* Field UI's 'Manage fields' page lets users re-order fields, but also
|
2010-05-03 07:37:51 +00:00
|
|
|
* non-field components. For nodes, these include the title, menu settings, and
|
|
|
|
* other elements exposed by contributed modules through hook_form() and
|
2009-08-19 13:31:14 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-04-06 16:49:12 +00:00
|
|
|
* @return
|
|
|
|
* A nested array of 'pseudo-field' components. Each list is nested within the
|
|
|
|
* field bundle to which those components apply. The keys are the name of the
|
|
|
|
* element as it appears in the form structure. The values are arrays with the
|
2009-08-19 13:31:14 +00:00
|
|
|
* 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.
|
2010-03-04 18:28:29 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_extra_fields_alter()
|
2009-08-19 13:31:14 +00:00
|
|
|
*/
|
2010-01-02 15:00:34 +00:00
|
|
|
function hook_field_extra_fields() {
|
2009-08-19 13:31:14 +00:00
|
|
|
$extra = array();
|
|
|
|
|
2010-04-06 16:49:12 +00:00
|
|
|
foreach (node_type_get_types() as $bundle) {
|
2009-08-19 13:31:14 +00:00
|
|
|
if ($type->has_title) {
|
2010-04-06 16:49:12 +00:00
|
|
|
$extra['node'][$bundle]['title'] = array(
|
2009-08-19 13:31:14 +00:00
|
|
|
'label' => $type->title_label,
|
|
|
|
'description' => t('Node module element.'),
|
|
|
|
'weight' => -5,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2010-04-06 16:49:12 +00:00
|
|
|
if (module_exists('poll')) {
|
|
|
|
$extra['node']['poll']['choice_wrapper'] = array(
|
|
|
|
'label' => t('Poll choices'),
|
|
|
|
'description' => t('Poll module choices.'),
|
|
|
|
'weight' => -4,
|
|
|
|
);
|
|
|
|
$extra['node']['poll']['settings'] = array(
|
|
|
|
'label' => t('Poll settings'),
|
|
|
|
'description' => t('Poll module settings.'),
|
|
|
|
'weight' => -3,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-08-19 13:31:14 +00:00
|
|
|
return $extra;
|
|
|
|
}
|
|
|
|
|
2010-03-04 18:28:29 +00:00
|
|
|
/**
|
|
|
|
* Alter "pseudo-field" components on fieldable entities.
|
|
|
|
*
|
|
|
|
* @param $info
|
|
|
|
* The associative array of 'pseudo-field' components.
|
|
|
|
*
|
|
|
|
* @see hook_field_extra_fields()
|
|
|
|
*/
|
|
|
|
function hook_field_extra_fields_alter(&$info) {
|
|
|
|
// Force node title to always be at the top of the list
|
|
|
|
// by default.
|
2010-04-06 16:49:12 +00:00
|
|
|
foreach (node_type_get_types() as $bundle) {
|
|
|
|
if (isset($info['node'][$bundle]['title'])) {
|
|
|
|
$info['node'][$bundle]['title']['weight'] = -20;
|
|
|
|
}
|
2010-03-04 18:28:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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
|
2010-02-12 05:38:10 +00:00
|
|
|
* can be attached to a fieldable entity. hook_field_info() defines the basic
|
2009-08-01 06:03:48 +00:00
|
|
|
* 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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2010-03-26 17:14:46 +00:00
|
|
|
* @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_prepare_view()
|
|
|
|
* @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
|
2010-02-12 05:38:10 +00:00
|
|
|
* displayed entities. Widgets and formatters can be implemented by a field-type
|
2010-05-03 07:37:51 +00:00
|
|
|
* module for its own field types, or by a third-party module to extend the
|
2009-08-01 06:03:48 +00:00
|
|
|
* behavior of existing field types.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2010-03-26 17:14:46 +00:00
|
|
|
* @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
|
2010-05-03 07:37:51 +00:00
|
|
|
* 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 (for example, the list of allowed values).
|
2009-08-01 06:03:48 +00:00
|
|
|
* - 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).
|
2010-05-18 18:30:49 +00:00
|
|
|
* - no_ui: (optional) A boolean specifying that users should not be allowed
|
|
|
|
* to create fields and instances of this field type through the UI. Such
|
|
|
|
* fields can only be created programmatically with field_create_field()
|
|
|
|
* and field_create_instance(). Defaults to FALSE.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_info_alter()
|
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
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of information on field types exposed by hook_field_info()
|
2009-06-30 03:12:03 +00:00
|
|
|
* 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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @return
|
2009-05-20 09:48:47 +00:00
|
|
|
* An associative array with the following keys:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - columns: An array of Schema API column specifications, keyed by column
|
|
|
|
* name. This specifies what comprises a value for a given field. 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 column 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
|
2010-05-03 07:37:51 +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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Define custom load behavior for this module's field types.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-02-12 05:38:10 +00:00
|
|
|
* Unlike most other field hooks, this hook operates on multiple entities. The
|
2010-05-03 07:37:51 +00:00
|
|
|
* $entities, $instances and $items parameters are arrays keyed by entity ID.
|
2010-02-12 05:38:10 +00:00
|
|
|
* For performance reasons, information for all available entity should be
|
2009-05-17 00:32:29 +00:00
|
|
|
* loaded in a single query where possible.
|
|
|
|
*
|
2009-10-16 03:21:23 +00:00
|
|
|
* Note that the changes made to the field values get cached by the field cache
|
|
|
|
* for subsequent loads. You should never use this hook to load fieldable
|
|
|
|
* entities, since this is likely to cause infinite recursions when
|
|
|
|
* hook_field_load() is run on those as well. Use
|
|
|
|
* hook_field_formatter_prepare_view() instead.
|
2009-05-17 00:32:29 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* Make changes or additions to field values by altering the $items parameter by
|
|
|
|
* reference. There is no return value.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entities
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of entities being loaded, keyed by entity 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
|
2010-02-12 05:38:10 +00:00
|
|
|
* Array of instance structures for $field for each entity, keyed by entity
|
2010-05-03 07:37:51 +00:00
|
|
|
* ID.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language code associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of field values already loaded for the entities, keyed by entity ID.
|
|
|
|
* Store your changes in this parameter (passed by reference).
|
2009-05-17 00:32:29 +00:00
|
|
|
* @param $age
|
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all fields, or
|
2010-02-12 05:38:10 +00:00
|
|
|
* FIELD_LOAD_REVISION to load the version indicated by each entity.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
|
2009-12-13 12:42:28 +00:00
|
|
|
// Sample code from text.module: precompute sanitized strings so they are
|
|
|
|
// stored in the field cache.
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entities as $id => $entity) {
|
2009-08-01 06:03:48 +00:00
|
|
|
foreach ($items[$id] as $delta => $item) {
|
2009-12-13 12:42:28 +00:00
|
|
|
// Only process items with a cacheable format, the rest will be handled
|
|
|
|
// by formatters if needed.
|
|
|
|
if (empty($instances[$id]['settings']['text_processing']) || filter_format_allowcache($item['format'])) {
|
|
|
|
$items[$id][$delta]['safe_value'] = isset($item['value']) ? _text_sanitize($instances[$id], $langcode, $item, 'value') : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
if ($field['type'] == 'text_with_summary') {
|
2009-12-13 12:42:28 +00:00
|
|
|
$items[$id][$delta]['safe_summary'] = isset($item['summary']) ? _text_sanitize($instances[$id], $langcode, $item, 'summary') : '';
|
2009-08-01 06:03:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Prepare field values prior to display.
|
2009-08-01 06:03:48 +00:00
|
|
|
*
|
2009-12-13 12:42:28 +00:00
|
|
|
* This hook is invoked before the field values are handed to formatters
|
|
|
|
* for display, and runs before the formatters' own
|
|
|
|
* hook_field_formatter_prepare_view().
|
|
|
|
*
|
2010-02-12 05:38:10 +00:00
|
|
|
* Unlike most other field hooks, this hook operates on multiple entities. The
|
2010-05-03 07:37:51 +00:00
|
|
|
* $entities, $instances and $items parameters are arrays keyed by entity ID.
|
2010-02-12 05:38:10 +00:00
|
|
|
* For performance reasons, information for all available entities should be
|
2009-12-13 12:42:28 +00:00
|
|
|
* loaded in a single query where possible.
|
2009-08-01 06:03:48 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* Make changes or additions to field values by altering the $items parameter by
|
|
|
|
* reference. There is no return value.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entities
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of entities being displayed, keyed by entity ID.
|
2009-08-01 06:03:48 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
2009-12-13 12:42:28 +00:00
|
|
|
* @param $instances
|
2010-02-12 05:38:10 +00:00
|
|
|
* Array of instance structures for $field for each entity, keyed by entity
|
2010-05-03 07:37:51 +00:00
|
|
|
* ID.
|
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
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}, or an empty array if unset.
|
2009-08-01 06:03:48 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_prepare_view($entity_type, $entities, $field, $instances, $langcode, &$items) {
|
2009-12-13 12:42:28 +00:00
|
|
|
// Sample code from image.module: if there are no images specified at all,
|
2010-05-03 07:37:51 +00:00
|
|
|
// use the default image.
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entities as $id => $entity) {
|
2009-12-13 12:42:28 +00:00
|
|
|
if (empty($items[$id]) && $field['settings']['default_image']) {
|
|
|
|
if ($file = file_load($field['settings']['default_image'])) {
|
|
|
|
$items[$id][0] = (array) $file + array(
|
|
|
|
'is_default' => TRUE,
|
|
|
|
'alt' => '',
|
|
|
|
'title' => '',
|
|
|
|
);
|
2009-08-01 06:03:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Validate this module's field data.
|
|
|
|
*
|
|
|
|
* If there are validation problems, add to the $errors array (passed by
|
|
|
|
* reference). There is no return value.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$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
|
2010-02-12 05:38:10 +00:00
|
|
|
* already been reported for the entity. The function should add its errors
|
2009-03-26 13:31:28 +00:00
|
|
|
* to this array. Each error is an associative array, with the following
|
|
|
|
* keys and values:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - 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
|
|
|
*/
|
2010-05-05 06:32:22 +00:00
|
|
|
function hook_field_validate($entity_type, $entity, $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
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* Make changes or additions to field values by altering the $items parameter by
|
|
|
|
* reference. There is no return value.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2009-11-12 21:03:36 +00:00
|
|
|
if ($field['type'] == 'number_decimal') {
|
|
|
|
// Let PHP round the value to ensure consistent behavior across storage
|
|
|
|
// backends.
|
|
|
|
foreach ($items as $delta => $item) {
|
|
|
|
if (isset($item['value'])) {
|
|
|
|
$items[$delta]['value'] = round($item['value'], $field['settings']['scale']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom insert behavior for this module's field types.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* Invoked from field_attach_insert().
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_insert($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom update behavior for this module's field types.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* Invoked from field_attach_update().
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_update($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-01 00:06:44 +00:00
|
|
|
/**
|
|
|
|
* Update the storage information for a field.
|
|
|
|
*
|
|
|
|
* This is invoked on the field's storage module from field_update_field(),
|
|
|
|
* before the new field information is saved to the database. The field storage
|
|
|
|
* module should update its storage tables to agree with the new field
|
|
|
|
* information. If there is a problem, the field storage module should throw an
|
|
|
|
* exception.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The updated field structure to be saved.
|
|
|
|
* @param $prior_field
|
|
|
|
* The previously-saved field structure.
|
|
|
|
* @param $has_data
|
|
|
|
* TRUE if the field has data in storage currently.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_update_field($field, $prior_field, $has_data) {
|
|
|
|
if (!$has_data) {
|
|
|
|
// There is no data. Re-create the tables completely.
|
|
|
|
$prior_schema = _field_sql_storage_schema($prior_field);
|
|
|
|
foreach ($prior_schema as $name => $table) {
|
|
|
|
db_drop_table($name, $table);
|
|
|
|
}
|
|
|
|
$schema = _field_sql_storage_schema($field);
|
|
|
|
foreach ($schema as $name => $table) {
|
|
|
|
db_create_table($name, $table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// There is data. See field_sql_storage_field_storage_update_field() for
|
|
|
|
// an example of what to do to modify the schema in place, preserving the
|
|
|
|
// old data as much as possible.
|
|
|
|
}
|
|
|
|
drupal_get_schema(NULL, TRUE);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked just before the data is deleted from field storage
|
|
|
|
* in field_attach_delete().
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_delete($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Define custom revision delete behavior for this module's field types.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked just before the data is deleted from field storage
|
|
|
|
* in field_attach_delete_revision(), and will only be called for fieldable
|
|
|
|
* types that are versioned.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity's bundle.
|
2009-08-22 00:58:55 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $items
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_delete_revision($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
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
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instance
|
2010-02-11 17:44:47 +00:00
|
|
|
* The instance structure for $field on $entity'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
|
2010-02-11 17:44:47 +00:00
|
|
|
* $entity->{$field['field_name']}[$langcode], or an empty array if unset.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_prepare_translation($entity_type, $entity, $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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2009-08-14 05:16:26 +00:00
|
|
|
* @return
|
|
|
|
* TRUE if $field's type considers $item not to contain any data;
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function hook_field_is_empty($item, $field) {
|
2010-05-06 05:59:31 +00:00
|
|
|
if (empty($item['value']) && (string) $item['value'] !== '0') {
|
2009-08-14 05:16:26 +00:00
|
|
|
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().
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2010-03-26 17:14:46 +00:00
|
|
|
* @see hook_field_widget_info_alter()
|
|
|
|
* @see hook_field_widget_form()
|
|
|
|
* @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.
|
2010-05-03 07:37:51 +00:00
|
|
|
* - behaviors: (optional) An array describing behaviors of the widget, with
|
|
|
|
* the following elements:
|
|
|
|
* - multiple values: One of the following constants:
|
|
|
|
* - 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: One of the following constants:
|
|
|
|
* - 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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Return the form for a single field widget.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-11-08 11:05:09 +00:00
|
|
|
* Field widget form elements should be based on the passed in $element, which
|
|
|
|
* contains the base form element properties derived from the field
|
|
|
|
* configuration.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-02-11 15:42:14 +00:00
|
|
|
* Field API will set the weight, field name and delta values for each form
|
|
|
|
* element. If there are multiple values for this field, the Field API will
|
2010-05-03 07:37:51 +00:00
|
|
|
* invoke this hook as many times as needed.
|
2010-02-11 15:42:14 +00:00
|
|
|
*
|
|
|
|
* Note that, depending on the context in which the widget is being included
|
2010-02-12 05:38:10 +00:00
|
|
|
* (regular entity edit form, 'default value' input in the field settings form,
|
2010-05-03 07:37:51 +00:00
|
|
|
* etc.), the passed in values for $field and $instance might be different
|
2010-02-11 15:42:14 +00:00
|
|
|
* from the official definitions returned by field_info_field() and
|
|
|
|
* field_info_instance(). If the widget uses Form API callbacks (like
|
|
|
|
* #element_validate, #value_callback...) that need to access the $field or
|
|
|
|
* $instance definitions, they should not use the field_info_*() functions, but
|
|
|
|
* fetch the information present in $form_state['field']:
|
|
|
|
* - $form_state['field'][$field_name][$langcode]['field']
|
|
|
|
* - $form_state['field'][$field_name][$langcode]['instance']
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @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
|
2010-02-11 15:42:14 +00:00
|
|
|
* An associative array containing the current state of the form.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure.
|
|
|
|
* @param $instance
|
|
|
|
* The field instance.
|
2009-08-27 00:33:52 +00:00
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $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).
|
2009-11-01 14:05:32 +00:00
|
|
|
* @param $element
|
2009-11-08 11:05:09 +00:00
|
|
|
* A form element array containing basic properties for the widget:
|
2010-03-27 05:52:50 +00:00
|
|
|
* - #entity_type: The name of the entity the field is attached to.
|
2009-11-08 11:05:09 +00:00
|
|
|
* - #bundle: The name of the field bundle the field is contained in.
|
|
|
|
* - #field_name: The name of the field.
|
2010-02-11 15:42:14 +00:00
|
|
|
* - #language: The language the field is being edited in.
|
2009-11-08 11:05:09 +00:00
|
|
|
* - #columns: A list of field storage columns of the field.
|
|
|
|
* - #title: The sanitized element label for the field instance, ready for
|
|
|
|
* output.
|
|
|
|
* - #description: The sanitized element description for the field instance,
|
|
|
|
* ready for output.
|
|
|
|
* - #required: A Boolean indicating whether the element value is required;
|
|
|
|
* for required multiple value fields, only the first widget's values are
|
|
|
|
* required.
|
|
|
|
* - #delta: The order of this item in the array of subelements; see $delta
|
|
|
|
* above.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @return
|
2009-11-08 11:05:09 +00:00
|
|
|
* The form elements for a single widget for this field.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-12-21 13:47:32 +00:00
|
|
|
function hook_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
|
2009-11-01 14:05:32 +00:00
|
|
|
$element += array(
|
2009-02-05 03:42:58 +00:00
|
|
|
'#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():
|
2010-05-03 07:37:51 +00:00
|
|
|
* - error: the error code. Complex widgets might need to report different
|
2009-03-26 13:31:28 +00:00
|
|
|
* errors to different form elements inside the widget.
|
2010-05-03 07:37:51 +00:00
|
|
|
* - message: the human readable message to be displayed.
|
2010-02-11 15:42:14 +00:00
|
|
|
* @param $form
|
|
|
|
* The form array.
|
|
|
|
* @param $form_state
|
|
|
|
* An associative array containing the current state of the form.
|
2009-03-26 13:31:28 +00:00
|
|
|
*/
|
2010-02-11 15:42:14 +00:00
|
|
|
function hook_field_widget_error($element, $error, $form, &$form_state) {
|
2009-03-26 13:31:28 +00:00
|
|
|
form_error($element['value'], $error['message']);
|
|
|
|
}
|
|
|
|
|
2009-08-01 06:03:48 +00:00
|
|
|
/**
|
|
|
|
* Expose Field API formatter types.
|
|
|
|
*
|
2009-12-11 16:49:40 +00:00
|
|
|
* Formatters handle the display of field values. Formatter hooks are typically
|
|
|
|
* called by the Field Attach API field_attach_prepare_view() and
|
|
|
|
* field_attach_view() functions.
|
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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_formatter_info_alter()
|
|
|
|
* @see hook_field_formatter_view()
|
|
|
|
* @see hook_field_formatter_prepare_view()
|
2009-08-01 06:03:48 +00:00
|
|
|
*/
|
|
|
|
function hook_field_formatter_info() {
|
|
|
|
return array(
|
|
|
|
'text_default' => array(
|
|
|
|
'label' => t('Default'),
|
|
|
|
'field types' => array('text', 'text_long', 'text_with_summary'),
|
|
|
|
),
|
|
|
|
'text_plain' => array(
|
|
|
|
'label' => t('Plain text'),
|
|
|
|
'field types' => array('text', 'text_long', 'text_with_summary'),
|
|
|
|
),
|
|
|
|
|
|
|
|
// 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'),
|
|
|
|
),
|
|
|
|
|
|
|
|
// 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'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-12-11 16:49:40 +00:00
|
|
|
* Allow formatters to load information for field values being displayed.
|
2009-10-16 03:21:23 +00:00
|
|
|
*
|
|
|
|
* This should be used when a formatter needs to load additional information
|
|
|
|
* from the database in order to render a field, for example a reference field
|
2010-02-12 05:38:10 +00:00
|
|
|
* which displays properties of the referenced entities such as name or type.
|
2009-10-16 03:21:23 +00:00
|
|
|
*
|
2009-12-13 12:42:28 +00:00
|
|
|
* This hook is called after the field type's own hook_field_prepare_view().
|
|
|
|
*
|
2010-02-12 05:38:10 +00:00
|
|
|
* Unlike most other field hooks, this hook operates on multiple entities. The
|
2010-05-03 07:37:51 +00:00
|
|
|
* $entities, $instances and $items parameters are arrays keyed by entity ID.
|
2010-02-12 05:38:10 +00:00
|
|
|
* For performance reasons, information for all available entities should be
|
2009-12-13 12:42:28 +00:00
|
|
|
* loaded in a single query where possible.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entities
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of entities being displayed, keyed by entity ID.
|
2009-10-16 03:21:23 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure for the operation.
|
|
|
|
* @param $instances
|
2010-02-12 05:38:10 +00:00
|
|
|
* Array of instance structures for $field for each entity, keyed by entity
|
2010-05-03 07:37:51 +00:00
|
|
|
* ID.
|
2009-10-16 03:21:23 +00:00
|
|
|
* @param $langcode
|
|
|
|
* The language the field values are to be shown in. If no language is
|
|
|
|
* provided the current language is used.
|
|
|
|
* @param $items
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of field values for the entities, keyed by entity ID.
|
2009-12-11 16:49:40 +00:00
|
|
|
* @param $displays
|
2010-05-03 07:37:51 +00:00
|
|
|
* Array of display settings to use for each entity, keyed by entity ID.
|
|
|
|
*
|
2009-10-16 03:21:23 +00:00
|
|
|
* @return
|
|
|
|
* Changes or additions to field values are done by altering the $items
|
|
|
|
* parameter by reference.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_formatter_prepare_view($entity_type, $entities, $field, $instances, $langcode, &$items, $displays) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-12-11 16:49:40 +00:00
|
|
|
}
|
2009-10-16 03:21:23 +00:00
|
|
|
|
2009-12-11 16:49:40 +00:00
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Build a renderable array for a field value.
|
2009-12-11 16:49:40 +00:00
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity.
|
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity being displayed.
|
2009-12-11 16:49:40 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure.
|
|
|
|
* @param $instance
|
|
|
|
* The field instance.
|
|
|
|
* @param $langcode
|
2010-05-03 07:37:51 +00:00
|
|
|
* The language associated with $items.
|
2009-12-11 16:49:40 +00:00
|
|
|
* @param $items
|
|
|
|
* Array of values for this field.
|
2009-12-12 20:16:03 +00:00
|
|
|
* @param $display
|
|
|
|
* The display settings to use, as found in the 'display' entry of instance
|
|
|
|
* definitions. The array notably contains the following keys and values;
|
|
|
|
* - type: The name of the formatter to use.
|
|
|
|
* - settings: The array of formatter settings.
|
2009-12-11 16:49:40 +00:00
|
|
|
*
|
|
|
|
* @return
|
2009-12-12 20:16:03 +00:00
|
|
|
* A renderable array for the $items, as an array of child elements keyed
|
|
|
|
* by numeric indexes starting from 0.
|
2009-12-11 16:49:40 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
|
2009-12-12 20:16:03 +00:00
|
|
|
$element = array();
|
2009-12-11 16:49:40 +00:00
|
|
|
$settings = $display['settings'];
|
|
|
|
|
|
|
|
switch ($display['type']) {
|
2009-12-12 20:16:03 +00:00
|
|
|
case 'sample_field_formatter_simple':
|
|
|
|
// Common case: each value is displayed individually in a sub-element
|
|
|
|
// keyed by delta. The field.tpl.php template specifies the markup
|
|
|
|
// wrapping each value.
|
|
|
|
foreach ($items as $delta => $item) {
|
|
|
|
$element[$delta] = array('#markup' => $settings['some_setting'] . $item['value']);
|
|
|
|
}
|
2009-12-11 16:49:40 +00:00
|
|
|
break;
|
|
|
|
|
2009-12-12 20:16:03 +00:00
|
|
|
case 'sample_field_formatter_themeable':
|
|
|
|
// More elaborate formatters can defer to a theme function for easier
|
|
|
|
// customization.
|
2009-12-11 16:49:40 +00:00
|
|
|
foreach ($items as $delta => $item) {
|
2009-12-12 20:16:03 +00:00
|
|
|
$element[$delta] = array(
|
|
|
|
'#theme' => 'mymodule_theme_sample_field_formatter_themeable',
|
|
|
|
'#data' => $item['value'],
|
|
|
|
'#some_setting' => $settings['some_setting'],
|
|
|
|
);
|
2009-12-11 16:49:40 +00:00
|
|
|
}
|
2009-12-12 20:16:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sample_field_formatter_combined':
|
|
|
|
// Some formatters might need to display all values within a single piece
|
|
|
|
// of markup.
|
|
|
|
$rows = array();
|
|
|
|
foreach ($items as $delta => $item) {
|
|
|
|
$rows[] = array($delta, $item['value']);
|
|
|
|
}
|
|
|
|
$element[0] = array(
|
|
|
|
'#theme' => 'table',
|
|
|
|
'#header' => array(t('Delta'), t('Value')),
|
|
|
|
'#rows' => $rows,
|
2009-12-11 16:49:40 +00:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-12-12 20:16:03 +00:00
|
|
|
return $element;
|
2009-10-16 03:21:23 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2010-05-03 07:37:51 +00:00
|
|
|
* Implementing modules should alter the $form or $form_state parameters.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* @param $entity_type
|
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
|
|
|
* @param $entity
|
|
|
|
* The entity for which to load form elements, used to initialize
|
|
|
|
* default form values.
|
|
|
|
* @param $form
|
|
|
|
* The form structure to fill in.
|
|
|
|
* @param $form_state
|
|
|
|
* An associative array containing the current state of the form.
|
|
|
|
* @param $langcode
|
|
|
|
* The language the field values are going to be entered in. If no language
|
|
|
|
* is provided the default site language will be used.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_form($entity_type, $entity, &$form, &$form_state, $langcode) {
|
2009-10-16 03:21:23 +00:00
|
|
|
$tids = array();
|
|
|
|
|
|
|
|
// Collect every possible term attached to any of the fieldable entities.
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entities as $id => $entity) {
|
2009-10-16 03:21:23 +00:00
|
|
|
foreach ($items[$id] as $delta => $item) {
|
|
|
|
// Force the array key to prevent duplicates.
|
|
|
|
$tids[$item['value']] = $item['value'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($tids) {
|
|
|
|
$terms = array();
|
|
|
|
|
|
|
|
// Avoid calling taxonomy_term_load_multiple because it could lead to
|
|
|
|
// circular references.
|
|
|
|
$query = db_select('taxonomy_term_data', 't');
|
|
|
|
$query->fields('t');
|
|
|
|
$query->condition('t.tid', $tids, 'IN');
|
|
|
|
$query->addTag('term_access');
|
|
|
|
$terms = $query->execute()->fetchAllAssoc('tid');
|
|
|
|
|
|
|
|
// Iterate through the fieldable entities again to attach the loaded term data.
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entities as $id => $entity) {
|
2009-10-16 03:21:23 +00:00
|
|
|
foreach ($items[$id] as $delta => $item) {
|
|
|
|
// Check whether the taxonomy term field instance value could be loaded.
|
|
|
|
if (isset($terms[$item['value']])) {
|
|
|
|
// Replace the instance value with the term data.
|
|
|
|
$items[$id][$delta]['taxonomy_term'] = $terms[$item['value']];
|
|
|
|
}
|
|
|
|
// Otherwise, unset the instance value, since the term does not exist.
|
|
|
|
else {
|
|
|
|
unset($items[$id][$delta]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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'.
|
2010-02-12 05:38:10 +00:00
|
|
|
* Instead of the usual $entity parameter, it accepts an array of entities,
|
2010-05-03 07:37:51 +00:00
|
|
|
* indexed by entity ID. For performance reasons, information for all available
|
2010-02-12 05:38:10 +00:00
|
|
|
* entities should be loaded in a single query where possible.
|
2009-05-17 00:32:29 +00:00
|
|
|
*
|
2010-02-12 05:38:10 +00:00
|
|
|
* The changes made to the entities' field values get cached by the field cache
|
2009-06-06 16:17:30 +00:00
|
|
|
* 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
|
|
|
*/
|
2010-05-03 07:37:51 +00:00
|
|
|
function hook_field_attach_load($entity_type, &$entities, $age, $options) {
|
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_validate($entity_type, $entity, &$errors) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_submit($entity_type, $entity, $form, &$form_state) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_presave($entity_type, $entity) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Act on field_attach_insert().
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-11-08 19:11:56 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-03-30 03:44:55 +00:00
|
|
|
*
|
2009-11-08 19:11:56 +00:00
|
|
|
* See field_attach_insert() for details and arguments.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_insert($entity_type, $entity) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Act on field_attach_update().
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2009-11-08 19:11:56 +00:00
|
|
|
* This hook is invoked after the field module has performed the operation.
|
2009-03-30 03:44:55 +00:00
|
|
|
*
|
2009-11-08 19:11:56 +00:00
|
|
|
* See field_attach_update() for details and arguments.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_update($entity_type, $entity) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 16:17:30 +00:00
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Alter field_attach_preprocess() variables.
|
2009-06-06 16:17:30 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked while preprocessing the field.tpl.php template file
|
|
|
|
* in field_attach_preprocess().
|
2009-06-06 16:17:30 +00:00
|
|
|
*
|
2009-11-08 19:11:56 +00:00
|
|
|
* @param $variables
|
|
|
|
* The variables array is passed by reference and will be populated with field
|
|
|
|
* values.
|
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - entity_type: The type of $entity; for example, 'node' or 'user'.
|
|
|
|
* - entity: The entity with fields to render.
|
2009-11-08 19:11:56 +00:00
|
|
|
* - element: The structured array containing the values ready for rendering.
|
2009-06-06 16:17:30 +00:00
|
|
|
*/
|
2009-11-08 19:11:56 +00:00
|
|
|
function hook_field_attach_preprocess_alter(&$variables, $context) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-06-06 16:17:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_delete($entity_type, $entity) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_delete_revision($entity_type, $entity) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2010-04-24 07:19:09 +00:00
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Act on field_purge_data().
|
2010-04-24 07:19:09 +00:00
|
|
|
*
|
|
|
|
* This hook is invoked in field_purge_data() and allows modules to act on
|
2010-05-03 07:37:51 +00:00
|
|
|
* purging data from a single field pseudo-entity. For example, if a module
|
2010-04-24 07:19:09 +00:00
|
|
|
* relates data in the field with its own data, it may purge its own data
|
|
|
|
* during this process as well.
|
|
|
|
*
|
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
2010-04-24 07:19:09 +00:00
|
|
|
* @param $entity
|
|
|
|
* The pseudo-entity whose field data is being purged.
|
|
|
|
* @param $field
|
|
|
|
* The (possibly deleted) field whose data is being purged.
|
|
|
|
* @param $instance
|
|
|
|
* The deleted field instance whose data is being purged.
|
|
|
|
*
|
|
|
|
* @see @link field_purge Field API bulk data deletion @endlink
|
|
|
|
* @see field_purge_data()
|
|
|
|
*/
|
|
|
|
function hook_field_attach_purge($entity_type, $entity, $field, $instance) {
|
|
|
|
// find the corresponding data in mymodule and purge it
|
|
|
|
if($entity_type == 'node' && $field->field_name == 'my_field_name') {
|
|
|
|
mymodule_remove_mydata($entity->nid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Perform alterations 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
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* @param $output
|
|
|
|
* The structured content array tree for all of the entity's fields.
|
2009-10-13 16:38:43 +00:00
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - entity_type: The type of $entity; for example, 'node' or 'user'.
|
|
|
|
* - entity: The entity with fields to render.
|
|
|
|
* - view_mode: View mode, for example, 'full' or 'teaser'.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2009-10-13 16:38:43 +00:00
|
|
|
function hook_field_attach_view_alter(&$output, $context) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2010-03-25 11:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Perform alterations on field_language() values.
|
2010-03-25 11:46:21 +00:00
|
|
|
*
|
|
|
|
* This hook is invoked to alter the array of display languages for the given
|
|
|
|
* entity.
|
|
|
|
*
|
|
|
|
* @param $display_language
|
|
|
|
* A reference to an array of language codes keyed by field name.
|
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
|
|
|
* - entity_type: The type of the entity to be displayed.
|
|
|
|
* - entity: The entity with fields to render.
|
|
|
|
* - langcode: The language code $entity has to be displayed in.
|
|
|
|
*/
|
|
|
|
function hook_field_language_alter(&$display_language, $context) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2010-03-25 11:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37:51 +00:00
|
|
|
* Alter field_available_languages() values.
|
2010-03-25 11:46:21 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_available_languages() to allow modules to
|
|
|
|
* alter the array of available languages for the given field.
|
2010-03-25 11:46:21 +00:00
|
|
|
*
|
|
|
|
* @param &$languages
|
|
|
|
* A reference to an array of language codes to be made available.
|
|
|
|
* @param $context
|
|
|
|
* An associative array containing:
|
|
|
|
* - entity_type: The type of the entity the field is attached to.
|
|
|
|
* - field: A field data structure.
|
|
|
|
*/
|
|
|
|
function hook_field_available_languages_alter(&$languages, $context) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_create_bundle($entity_type, $bundle) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-05-03 07:37: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.
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
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
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of entity; for example, 'node' or 'user'.
|
2009-04-26 09:18:20 +00:00
|
|
|
* @param $bundle
|
|
|
|
* The bundle that was just deleted.
|
|
|
|
* @param $instances
|
2009-10-15 12:44:36 +00:00
|
|
|
* An array of all instances that existed for the bundle before it was
|
2009-04-26 09:18:20 +00:00
|
|
|
* deleted.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_attach_delete_bundle($entity_type, $bundle, $instances) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2009-10-14 14:55:12 +00:00
|
|
|
* @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.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_storage_details_alter()
|
2009-10-14 14:55:12 +00:00
|
|
|
*/
|
2010-01-13 04:37:03 +00:00
|
|
|
function hook_field_storage_details($field) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-10-14 14:55:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform alterations on Field API storage details.
|
|
|
|
*
|
|
|
|
* @param $details
|
|
|
|
* An array of storage details for fields as exposed by
|
|
|
|
* hook_field_storage_details() implementations.
|
|
|
|
* @param $field
|
|
|
|
* A field structure.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
|
|
|
* @see hook_field_storage_details()
|
2009-10-14 14:55:12 +00:00
|
|
|
*/
|
2010-01-13 04:37:03 +00:00
|
|
|
function hook_field_storage_details_alter(&$details, $field) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-10-14 14:55:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
2010-02-12 05:38:10 +00:00
|
|
|
* Load field data for a set of entities.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_attach_load() to ask the field storage
|
|
|
|
* module to load field data.
|
|
|
|
*
|
2010-04-04 07:33:15 +00:00
|
|
|
* Modules implementing this hook should load field values and add them to
|
|
|
|
* objects in $entities. Fields with no values should be added as empty
|
|
|
|
* arrays.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-04-04 07:33:15 +00:00
|
|
|
* The type of entity, such as 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entities
|
2010-04-04 07:33:15 +00:00
|
|
|
* The array of entity objects to add fields to, keyed by entity ID.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $age
|
2010-04-04 07:33:15 +00:00
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all fields, or
|
|
|
|
* FIELD_LOAD_REVISION to load the version indicated by each entity.
|
- 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
|
2010-04-04 07:33:15 +00:00
|
|
|
* IDs, and the values of the array are the entity IDs (or revision IDs,
|
|
|
|
* depending on the $age parameter) to add each field to.
|
|
|
|
* @param $options
|
|
|
|
* An associative array of additional options, with the following keys:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - deleted: If TRUE, deleted fields should be loaded as well as
|
2010-04-04 07:33:15 +00:00
|
|
|
* non-deleted fields. If unset or FALSE, only non-deleted fields should be
|
|
|
|
* loaded.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-05-03 07:37:51 +00:00
|
|
|
function hook_field_storage_load($entity_type, &$entities, $age, $fields, $options) {
|
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-12 05:38:10 +00:00
|
|
|
* Write field data for an entity.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_attach_insert() and field_attach_update(),
|
|
|
|
* to ask the field storage module to save field data.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity type of entity, such as 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity on which to operate.
|
2009-03-13 21:25:40 +00:00
|
|
|
* @param $op
|
2010-02-12 05:38:10 +00:00
|
|
|
* FIELD_STORAGE_UPDATE when updating an existing entity,
|
|
|
|
* FIELD_STORAGE_INSERT when inserting a new entity.
|
- 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
|
2010-05-03 07:37:51 +00:00
|
|
|
* array are field IDs.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_storage_write($entity_type, $entity, $op, $fields) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-12 05:38:10 +00:00
|
|
|
* Delete all field data for an entity.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_attach_delete() to ask the field storage
|
|
|
|
* module to delete field data.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity type of entity, such as 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity 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
|
2010-05-03 07:37:51 +00:00
|
|
|
* array are field IDs.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_storage_delete($entity_type, $entity, $fields) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-12 05:38:10 +00:00
|
|
|
* Delete a single revision of field data for an entity.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_attach_delete_revision() to ask the field
|
|
|
|
* storage module to delete field revision data.
|
|
|
|
*
|
2009-03-30 03:44:55 +00:00
|
|
|
* Deleting the current (most recently written) revision is not
|
|
|
|
* allowed as has undefined results.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity type of entity, such as 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity on which to operate. The revision to delete is
|
2010-05-03 07:37:51 +00:00
|
|
|
* indicated by the entity's revision ID property, as identified by
|
2010-02-11 17:44:47 +00:00
|
|
|
* hook_fieldable_info() for $entity_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
|
2010-05-03 07:37:51 +00:00
|
|
|
* array are field IDs.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_storage_delete_revision($entity_type, $entity, $fields) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 16:17:30 +00:00
|
|
|
/**
|
|
|
|
* Handle a field query.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_attach_query() to ask the field storage
|
|
|
|
* module to handle a field query.
|
|
|
|
*
|
2009-06-06 16:17:30 +00:00
|
|
|
* @param $field_name
|
|
|
|
* The name of the field to query.
|
|
|
|
* @param $conditions
|
2010-05-03 07:37:51 +00:00
|
|
|
* 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-10-22 00:49:13 +00:00
|
|
|
* @param $options
|
|
|
|
* See field_attach_query(). All option keys are guaranteed to be specified.
|
2010-05-03 07:37:51 +00:00
|
|
|
*
|
2009-06-06 16:17:30 +00:00
|
|
|
* @return
|
|
|
|
* See field_attach_query().
|
|
|
|
*/
|
2009-10-22 00:49:13 +00:00
|
|
|
function hook_field_storage_query($field_name, $conditions, $options) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body
|
2009-06-06 16:17:30 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* Act on creation of a new field.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_create_field() to ask the field storage
|
|
|
|
* module to save field information and prepare for storing field instances.
|
|
|
|
* If there is a problem, the field storage module should throw an exception.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field structure being created.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_create_field($field) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on deletion of a field.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_delete_field() to ask the field storage
|
|
|
|
* module to mark all information stored in the field for deletion.
|
|
|
|
*
|
- 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) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on deletion of a field instance.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_delete_instance() to ask the field storage
|
|
|
|
* module to mark all information stored for the field instance for deletion.
|
|
|
|
*
|
- 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) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-11-08 19:11:56 +00:00
|
|
|
/**
|
|
|
|
* Act before the storage backends load field data.
|
|
|
|
*
|
|
|
|
* 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.
|
2010-04-04 07:33:15 +00:00
|
|
|
* Possible use cases include per-bundle storage, per-combo-field storage, etc.
|
|
|
|
*
|
|
|
|
* Modules implementing this hook should load field values and add them to
|
|
|
|
* objects in $entities. Fields with no values should be added as empty
|
|
|
|
* arrays. In addition, fields loaded should be added as keys to $skip_fields.
|
2009-11-08 19:11:56 +00:00
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-04-04 07:33:15 +00:00
|
|
|
* The type of entity, such as 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entities
|
2010-04-04 07:33:15 +00:00
|
|
|
* The array of entity objects to add fields to, keyed by entity ID.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @param $age
|
|
|
|
* FIELD_LOAD_CURRENT to load the most recent revision for all fields, or
|
2010-02-12 05:38:10 +00:00
|
|
|
* FIELD_LOAD_REVISION to load the version indicated by each entity.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @param $skip_fields
|
2010-04-04 07:33:15 +00:00
|
|
|
* An array keyed by field IDs whose data has already been loaded and
|
|
|
|
* therefore should not be loaded again. Add a key to this array to indicate
|
|
|
|
* that your module has already loaded a field.
|
|
|
|
* @param $options
|
|
|
|
* An associative array of additional options, with the following keys:
|
2010-05-03 07:37:51 +00:00
|
|
|
* - field_id: The field ID that should be loaded. If unset, all fields
|
2010-04-04 07:33:15 +00:00
|
|
|
* should be loaded.
|
2010-05-03 07:37:51 +00:00
|
|
|
* - deleted: If TRUE, deleted fields should be loaded as well as
|
2010-04-04 07:33:15 +00:00
|
|
|
* non-deleted fields. If unset or FALSE, only non-deleted fields should be
|
|
|
|
* loaded.
|
2009-11-08 19:11:56 +00:00
|
|
|
*/
|
2010-04-04 07:33:15 +00:00
|
|
|
function hook_field_storage_pre_load($entity_type, $entities, $age, &$skip_fields, $options) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-11-08 19:11:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act before the storage backends insert field data.
|
|
|
|
*
|
|
|
|
* This hook allows modules to store data before the Field Storage API,
|
|
|
|
* optionally preventing the field storage module from doing so.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity with fields to save.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @param $skip_fields
|
2010-05-03 07:37:51 +00:00
|
|
|
* An array keyed by field IDs whose data has already been written and
|
|
|
|
* therefore should not be written again. The values associated with these
|
|
|
|
* keys are not specified.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @return
|
2010-05-03 07:37:51 +00:00
|
|
|
* Saved field IDs are set set as keys in $skip_fields.
|
2009-11-08 19:11:56 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_storage_pre_insert($entity_type, $entity, &$skip_fields) {
|
|
|
|
if ($entity_type == 'node' && $entity->status && _forum_node_check_node_type($entity)) {
|
2009-11-08 19:11:56 +00:00
|
|
|
$query = db_insert('forum_index')->fields(array('nid', 'title', 'tid', 'sticky', 'created', 'comment_count', 'last_comment_timestamp'));
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entity->taxonomy_forums as $language) {
|
2009-11-08 19:11:56 +00:00
|
|
|
foreach ($language as $delta) {
|
|
|
|
$query->values(array(
|
2010-02-11 17:44:47 +00:00
|
|
|
'nid' => $entity->nid,
|
|
|
|
'title' => $entity->title,
|
2009-11-08 19:11:56 +00:00
|
|
|
'tid' => $delta['value'],
|
2010-02-11 17:44:47 +00:00
|
|
|
'sticky' => $entity->sticky,
|
|
|
|
'created' => $entity->created,
|
2009-11-08 19:11:56 +00:00
|
|
|
'comment_count' => 0,
|
2010-02-11 17:44:47 +00:00
|
|
|
'last_comment_timestamp' => $entity->created,
|
2009-11-08 19:11:56 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$query->execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act before the storage backends update field data.
|
|
|
|
*
|
|
|
|
* This hook allows modules to store data before the Field Storage API,
|
|
|
|
* optionally preventing the field storage module from doing so.
|
|
|
|
*
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* The entity with fields to save.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @param $skip_fields
|
2010-05-03 07:37:51 +00:00
|
|
|
* An array keyed by field IDs whose data has already been written and
|
|
|
|
* therefore should not be written again. The values associated with these
|
|
|
|
* keys are not specified.
|
2009-11-08 19:11:56 +00:00
|
|
|
* @return
|
2010-05-03 07:37:51 +00:00
|
|
|
* Saved field IDs are set set as keys in $skip_fields.
|
2009-11-08 19:11:56 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_storage_pre_update($entity_type, $entity, &$skip_fields) {
|
2009-11-08 19:11:56 +00:00
|
|
|
$first_call = &drupal_static(__FUNCTION__, array());
|
|
|
|
|
2010-02-11 17:44:47 +00:00
|
|
|
if ($entity_type == 'node' && $entity->status && _forum_node_check_node_type($entity)) {
|
2009-11-08 19:11:56 +00:00
|
|
|
// We don't maintain data for old revisions, so clear all previous values
|
2010-02-12 05:38:10 +00:00
|
|
|
// from the table. Since this hook runs once per field, per entity, make
|
2009-11-08 19:11:56 +00:00
|
|
|
// sure we only wipe values once.
|
2010-02-11 17:44:47 +00:00
|
|
|
if (!isset($first_call[$entity->nid])) {
|
|
|
|
$first_call[$entity->nid] = FALSE;
|
|
|
|
db_delete('forum_index')->condition('nid', $entity->nid)->execute();
|
2009-11-08 19:11:56 +00:00
|
|
|
}
|
|
|
|
// Only save data to the table if the node is published.
|
2010-02-11 17:44:47 +00:00
|
|
|
if ($entity->status) {
|
2009-11-08 19:11:56 +00:00
|
|
|
$query = db_insert('forum_index')->fields(array('nid', 'title', 'tid', 'sticky', 'created', 'comment_count', 'last_comment_timestamp'));
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entity->taxonomy_forums as $language) {
|
2009-11-08 19:11:56 +00:00
|
|
|
foreach ($language as $delta) {
|
|
|
|
$query->values(array(
|
2010-02-11 17:44:47 +00:00
|
|
|
'nid' => $entity->nid,
|
|
|
|
'title' => $entity->title,
|
2009-11-08 19:11:56 +00:00
|
|
|
'tid' => $delta['value'],
|
2010-02-11 17:44:47 +00:00
|
|
|
'sticky' => $entity->sticky,
|
|
|
|
'created' => $entity->created,
|
2009-11-08 19:11:56 +00:00
|
|
|
'comment_count' => 0,
|
2010-02-11 17:44:47 +00:00
|
|
|
'last_comment_timestamp' => $entity->created,
|
2009-11-08 19:11:56 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$query->execute();
|
|
|
|
// The logic for determining last_comment_count is fairly complex, so
|
|
|
|
// call _forum_update_forum_index() too.
|
2010-02-11 17:44:47 +00:00
|
|
|
_forum_update_forum_index($entity->nid);
|
2009-11-08 19:11:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act before the storage backend runs the query.
|
|
|
|
*
|
|
|
|
* This hook should be implemented by modules that use
|
|
|
|
* hook_field_storage_pre_load(), hook_field_storage_pre_insert() and
|
|
|
|
* hook_field_storage_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.
|
|
|
|
* @param $options
|
|
|
|
* See field_attach_query(). All option keys are guaranteed to be specified.
|
|
|
|
* @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.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_pre_query($field_name, $conditions, $options, &$skip_field) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-11-08 19:11:56 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_create_field() after the field is created, to
|
|
|
|
* allow modules to act on field creation.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field just created.
|
|
|
|
*/
|
|
|
|
function hook_field_create_field($field) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being created.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_create_instance() after the instance record
|
|
|
|
* is saved, so it cannot be used to modify the instance itself.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance just created.
|
|
|
|
*/
|
|
|
|
function hook_field_create_instance($instance) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* To forbid the update from occurring, throw a FieldUpdateForbiddenException.
|
|
|
|
*
|
2009-09-26 15:57:39 +00:00
|
|
|
* @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.
|
|
|
|
*/
|
2010-05-03 07:37:51 +00:00
|
|
|
function hook_field_update_forbid($field, $prior_field, $has_data) {
|
2009-09-26 15:57:39 +00:00
|
|
|
// A 'list' field stores integer keys mapped to display values. If
|
|
|
|
// the new field will have fewer values, and any data exists for the
|
2010-01-25 10:38:35 +00:00
|
|
|
// abandoned keys, the field will have no way to display them. So,
|
2009-09-26 15:57:39 +00:00
|
|
|
// 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.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked just after field is updated in field_update_field().
|
2009-09-26 15:57:39 +00:00
|
|
|
*
|
|
|
|
* @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) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-09-26 15:57:39 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked just after a field is deleted by field_delete_field().
|
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) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being updated.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_update_instance() after the instance record
|
|
|
|
* is saved, so it cannot be used by a module to modify the instance itself.
|
2009-02-05 03:42:58 +00:00
|
|
|
*
|
|
|
|
* @param $instance
|
2010-04-22 19:06:34 +00:00
|
|
|
* The instance as it is post-update.
|
|
|
|
* @param $prior_$instance
|
|
|
|
* The instance as it was pre-update.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-04-22 19:06:34 +00:00
|
|
|
function hook_field_update_instance($instance, $prior_instance) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-17 03:46:51 +00:00
|
|
|
* Act on a field instance being deleted.
|
2009-04-13 05:18:18 +00:00
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_delete_instance() 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) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on field records being read from the database.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_read_fields() on each field being read.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field record just read from the database.
|
|
|
|
*/
|
2010-05-03 07:37:51 +00:00
|
|
|
function hook_field_read_field(&$field) {
|
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Act on a field record being read from the database.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_read_instances() on each instance being read.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $instance
|
|
|
|
* The instance record just read from the database.
|
|
|
|
*/
|
|
|
|
function hook_field_read_instance($instance) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2009-02-05 03:42:58 +00:00
|
|
|
}
|
|
|
|
|
2010-04-22 22:51:54 +00:00
|
|
|
/**
|
|
|
|
* Acts when a field record is being purged.
|
|
|
|
*
|
|
|
|
* In field_purge_field(), after the field configuration has been
|
|
|
|
* removed from the database, the field storage module has had a chance to
|
|
|
|
* run its hook_field_storage_purge_field(), and the field info cache
|
|
|
|
* has been cleared, this hook is invoked on all modules to allow them to
|
|
|
|
* respond to the field being purged.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field being purged.
|
|
|
|
*/
|
|
|
|
function hook_field_purge_field($field) {
|
|
|
|
db_delete('my_module_field_info')
|
|
|
|
->condition('id', $field['id'])
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Acts when a field instance is being purged.
|
|
|
|
*
|
|
|
|
* In field_purge_instance(), after the field instance has been
|
|
|
|
* removed from the database, the field storage module has had a chance to
|
|
|
|
* run its hook_field_storage_purge_instance(), and the field info cache
|
|
|
|
* has been cleared, this hook is invoked on all modules to allow them to
|
|
|
|
* respond to the field instance being purged.
|
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance being purged.
|
|
|
|
*/
|
|
|
|
function hook_field_purge_field_instance($instance) {
|
|
|
|
db_delete('my_module_field_instance_info')
|
|
|
|
->condition('id', $instance['id'])
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
|
2010-04-22 23:38:17 +00:00
|
|
|
/**
|
|
|
|
* Remove field storage information when a field record is purged.
|
|
|
|
*
|
|
|
|
* Called from field_purge_field() to allow the field storage module
|
|
|
|
* to remove field information when a field is being purged.
|
|
|
|
*
|
|
|
|
* @param $field
|
|
|
|
* The field being purged.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_purge_field($field) {
|
|
|
|
$table_name = _field_sql_storage_tablename($field);
|
|
|
|
$revision_name = _field_sql_storage_revision_tablename($field);
|
|
|
|
db_drop_table($table_name);
|
|
|
|
db_drop_table($revision_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove field storage information when a field instance is purged.
|
|
|
|
*
|
|
|
|
* Called from field_purge_instance() to allow the field storage module
|
|
|
|
* to remove field instance information when a field instance is being
|
|
|
|
* purged.
|
|
|
|
*
|
|
|
|
* @param $instance
|
|
|
|
* The instance being purged.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_purge_field_instance($instance) {
|
|
|
|
db_delete('my_module_field_instance_info')
|
|
|
|
->condition('id', $instance['id'])
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove field storage information when field data is purged.
|
|
|
|
*
|
|
|
|
* Called from field_purge_data() to allow the field storage
|
|
|
|
* module to delete field data information.
|
|
|
|
*
|
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
2010-04-22 23:38:17 +00:00
|
|
|
* @param $entity
|
|
|
|
* The pseudo-entity whose field data to delete.
|
|
|
|
* @param $field
|
|
|
|
* The (possibly deleted) field whose data is being purged.
|
|
|
|
* @param $instance
|
|
|
|
* The deleted field instance whose data is being purged.
|
|
|
|
*/
|
|
|
|
function hook_field_storage_purge($entity_type, $entity, $field, $instance) {
|
|
|
|
list($id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);
|
|
|
|
$etid = _field_sql_storage_etid($entity_type);
|
|
|
|
|
|
|
|
$table_name = _field_sql_storage_tablename($field);
|
|
|
|
$revision_name = _field_sql_storage_revision_tablename($field);
|
|
|
|
db_delete($table_name)
|
|
|
|
->condition('etid', $etid)
|
|
|
|
->condition('entity_id', $id)
|
|
|
|
->execute();
|
|
|
|
db_delete($revision_name)
|
|
|
|
->condition('etid', $etid)
|
|
|
|
->condition('entity_id', $id)
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
|
2009-02-05 03:42:58 +00:00
|
|
|
/**
|
|
|
|
* @} End of "ingroup field_crud"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TODO: I'm not sure where these belong yet.
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether the user has access to a given field.
|
|
|
|
*
|
2010-05-03 07:37:51 +00:00
|
|
|
* This hook is invoked from field_access() to let modules block access to
|
|
|
|
* operations on fields. If no module returns FALSE, the operation is allowed.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $op
|
2010-05-03 07:37:51 +00:00
|
|
|
* The operation to be performed. Possible values: 'edit', 'view'.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $field
|
|
|
|
* The field on which the operation is to be performed.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity_type
|
2010-05-03 07:37:51 +00:00
|
|
|
* The type of $entity; for example, 'node' or 'user'.
|
2010-02-11 17:44:47 +00:00
|
|
|
* @param $entity
|
2010-02-12 05:38:10 +00:00
|
|
|
* (optional) The entity for the operation.
|
2009-02-05 03:42:58 +00:00
|
|
|
* @param $account
|
2010-05-03 07:37:51 +00:00
|
|
|
* (optional) The account to check; if not given use currently logged in user.
|
|
|
|
*
|
2009-02-05 03:42:58 +00:00
|
|
|
* @return
|
2010-05-03 07:37:51 +00:00
|
|
|
* TRUE if the operation is allowed, and FALSE if the operation is denied.
|
2009-02-05 03:42:58 +00:00
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function hook_field_access($op, $field, $entity_type, $entity, $account) {
|
2010-05-03 07:37:51 +00:00
|
|
|
// @todo Needs function body.
|
2010-04-30 19:24:03 +00:00
|
|
|
}
|