2009-02-05 01:21:16 +00:00
<?php
// $Id$
/**
* @file
2009-02-10 03:16:15 +00:00
* Attach custom data fields to Drupal objects.
2009-02-05 01:21:16 +00:00
*/
2009-06-02 07:02:17 +00:00
/*
2009-06-05 18:25:41 +00:00
* Load all public Field API functions. Drupal currently has no
* mechanism for auto-loading core APIs, so we have to load them on
* every page request.
2009-06-02 07:02:17 +00:00
*/
2009-10-09 07:31:38 +00:00
module_load_include('inc', 'field', 'field.crud');
module_load_include('inc', 'field', 'field.default');
module_load_include('inc', 'field', 'field.info');
module_load_include('inc', 'field', 'field.multilingual');
module_load_include('inc', 'field', 'field.attach');
module_load_include('inc', 'field', 'field.form');
2009-06-02 07:02:17 +00:00
2009-02-05 01:21:16 +00:00
/**
* @defgroup field Field API
* @{
* Attach custom data fields to Drupal objects.
*
* The Field API allows custom data fields to be attached to Drupal
* objects and takes care of storing, loading, editing, and rendering
2009-02-10 03:16:15 +00:00
* field data. Any object type (node, user, etc.) can use the Field
2009-02-05 01:21:16 +00:00
* API to make itself "fieldable" and thus allow fields to be attached
2009-02-10 03:16:15 +00:00
* to it. Other modules can provide a user interface for managing custom
2009-02-08 21:22:59 +00:00
* fields via a web browser as well as a wide and flexible variety of
2009-02-05 01:21:16 +00:00
* data type, form element, and display format capabilities.
*
* - @link field_structs Data structures: Field, Instance, Bundle @endlink.
*
2009-02-10 03:16:15 +00:00
* - @link field_types Field Types API @endlink. Defines field types,
* widget types, and display formatters. Field modules use this API
2009-02-05 01:21:16 +00:00
* to provide field types like Text and Node Reference along with the
* associated form elements and display formatters.
*
2009-02-10 03:16:15 +00:00
* - @link field_crud Field CRUD API @endlink. Create, updates, and
2009-02-05 01:21:16 +00:00
* deletes fields, bundles (a.k.a. "content types"), and instances.
* Modules use this API, often in hook_install(), to create
2009-08-19 22:46:05 +00:00
* custom data structures.
2009-02-05 01:21:16 +00:00
*
2009-02-10 03:16:15 +00:00
* - @link field_attach Field Attach API @endlink. Connects object
* types to the Field API. Field Attach API functions load, store,
2009-10-18 01:55:13 +00:00
* generate Form API structures, display, and perform a variety of
2009-02-05 01:21:16 +00:00
* other functions for field data connected to individual objects.
* Fieldable object types like node and user use this API to make
* themselves fieldable.
*
2009-02-10 03:16:15 +00:00
* - @link field_info Field Info API @endlink. Exposes information
2009-02-05 01:21:16 +00:00
* about all fields, instances, widgets, and related information
* defined by or with the Field API.
*
2009-02-10 03:16:15 +00:00
* - @link field_storage Field Storage API @endlink. Provides a
* pluggable back-end storage system for actual field data. The
2009-02-05 01:21:16 +00:00
* default implementation, field_sql_storage.module, stores field data
* in the local SQL database.
2009-12-02 08:08:11 +00:00
*
2009-08-11 14:59:40 +00:00
* - @link field_purge Field API bulk data deletion @endlink. Cleans
* up after bulk deletion operations such as field_delete_field()
* and field_delete_instance().
2009-02-05 01:21:16 +00:00
*/
/**
* Value for $field['cardinality'] property to indicate it can hold an
* unlimited number of values.
*/
define('FIELD_CARDINALITY_UNLIMITED', -1);
/**
* TODO
*/
define('FIELD_BEHAVIOR_NONE', 0x0001);
/**
* TODO
*/
define('FIELD_BEHAVIOR_DEFAULT', 0x0002);
/**
* TODO
*/
define('FIELD_BEHAVIOR_CUSTOM', 0x0004);
/**
* Age argument for loading the most recent version of an object's
* field data with field_attach_load().
*/
define('FIELD_LOAD_CURRENT', 'FIELD_LOAD_CURRENT');
/**
* Age argument for loading the version of an object's field data
* specified in the object with field_attach_load().
*/
define('FIELD_LOAD_REVISION', 'FIELD_LOAD_REVISION');
2009-06-06 16:17:30 +00:00
/**
* @name Field query flags
* @{
2009-07-07 09:28:07 +00:00
* Flags for field_attach_query().
2009-06-06 16:17:30 +00:00
*/
2009-07-07 09:28:07 +00:00
/**
* Limit argument for field_attach_query() to request all available
* objects instead of a limited number.
*/
define('FIELD_QUERY_NO_LIMIT', 'FIELD_QUERY_NO_LIMIT');
2009-06-06 16:17:30 +00:00
/**
2009-07-15 17:55:18 +00:00
* Cursor return value for field_attach_query() to indicate that no
* more data is available.
2009-06-06 16:17:30 +00:00
*/
2009-07-15 17:55:18 +00:00
define('FIELD_QUERY_COMPLETE', 'FIELD_QUERY_COMPLETE');
2009-06-06 16:17:30 +00:00
/**
* @} End of "Field query flags".
*/
2009-03-26 13:31:28 +00:00
/**
* Base class for all exceptions thrown by Field API functions.
*
* This class has no functionality of its own other than allowing all
* Field API exceptions to be caught by a single catch block.
*/
class FieldException extends Exception {}
2009-09-30 12:26:36 +00:00
/**
* Exception class thrown by hook_field_update_forbid().
*/
class FieldUpdateForbiddenException extends FieldException {}
2009-02-05 01:21:16 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_flush_caches().
2009-02-05 01:21:16 +00:00
*/
function field_flush_caches() {
return array('cache_field');
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_help().
2009-02-05 01:21:16 +00:00
*/
function field_help($path, $arg) {
switch ($path) {
case 'admin/help#field':
2009-12-02 08:08:11 +00:00
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Field module allows custom data fields to be attached to Drupal <em>objects</em> (content nodes, users, taxonomy vocabularies, etc.) and takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href="@field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new objects "fieldable" and thus allow fields to be attached to their objects. For more information, see the online handbook entry for <a href="@field">Field module</a>.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Enabling field types') . '</dt>';
2009-12-13 02:04:14 +00:00
$output .= '<dd>' . t('The Field module provides the infrastructure for fields and field attachment; the field types and input widgets themselves are provided by additional modules. Some of the modules are required; the optional modules can be enabled from the <a href="@modules">Modules administration page</a>. Drupal core includes the following field type modules: Number (required), Text (required), List (required), Taxonomy (optional), Image (optional), and File (optional); the required Options module provides input widgets for other field modules. Additional fields and widgets may be provided by contributed modules, which you can find in the <a href="@contrib">contributed module section of Drupal.org</a>. Currently enabled field and input widget modules:', array('@modules' => url('admin/config/modules'), '@contrib' => 'http://drupal.org/project/modules', '@options' => url('admin/help/options')));
// Make a list of all widget and field modules currently enabled, in
// order by displayed module name (module names are not translated).
$items = array();
$info = system_get_info('module');
$modules = array_merge(module_implements('field_info'), module_implements('field_widget_info'));
$modules = array_unique($modules);
sort($modules);
foreach ($modules as $module) {
$display = $info[$module]['name'];
if (module_hook($module, 'help')) {
$items['items'][] = l($display, 'admin/help/' . $module);
}
else {
$items['items'][] = $display;
}
}
$output .= theme('item_list', $items) . '</dd>';
$output .= '<dt>' . t('Managing field data storage') . '</dt>';
$output .= '<dd>' . t('Developers of field modules can either use the default <a href="@sql-store">Field SQL storage module</a> to store data for their fields, or a contributed or custom module developed using the <a href="@storage-api">field storage API</a>.', array('@storage-api' => 'http://api.drupal.org/api/group/field_storage/7', '@sql-store' => url('admin/help/field_sql_storage'))) . '</dd>';
2009-12-02 08:08:11 +00:00
$output .= '</dl>';
2009-02-05 01:21:16 +00:00
return $output;
}
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_theme().
2009-02-05 01:21:16 +00:00
*/
function field_theme() {
$path = drupal_get_path('module', 'field') . '/theme';
2009-09-09 21:21:54 +00:00
$items = array(
2009-02-05 01:21:16 +00:00
'field' => array(
'template' => 'field',
2009-10-23 22:24:19 +00:00
'render element' => 'element',
2009-02-05 01:21:16 +00:00
'path' => $path,
),
'field_multiple_value_form' => array(
2009-10-23 22:24:19 +00:00
'render element' => 'element',
2009-02-05 01:21:16 +00:00
),
);
2009-12-11 16:49:40 +00:00
2009-09-09 21:21:54 +00:00
return $items;
2009-02-05 01:21:16 +00:00
}
2009-08-11 14:59:40 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_cron().
2009-08-11 14:59:40 +00:00
*
* Purges some deleted Field API data, if any exists.
*/
function field_cron() {
$limit = variable_get('field_purge_batch_size', 10);
field_purge_batch($limit);
}
2009-02-05 01:21:16 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_modules_installed().
2009-02-05 01:21:16 +00:00
*/
function field_modules_installed($modules) {
field_cache_clear();
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_modules_uninstalled().
2009-02-05 01:21:16 +00:00
*/
function field_modules_uninstalled($modules) {
module_load_include('inc', 'field', 'field.crud');
foreach ($modules as $module) {
// TODO D7: field_module_delete is not yet implemented
// field_module_delete($module);
}
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_modules_enabled().
2009-02-05 01:21:16 +00:00
*/
function field_modules_enabled($modules) {
foreach ($modules as $module) {
field_associate_fields($module);
}
field_cache_clear();
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_modules_disabled().
2009-02-05 01:21:16 +00:00
*/
function field_modules_disabled($modules) {
foreach ($modules as $module) {
db_update('field_config')
->fields(array('active' => 0))
->condition('module', $module)
->execute();
- 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
db_update('field_config')
->fields(array('storage_active' => 0))
->condition('storage_module', $module)
->execute();
2009-02-05 01:21:16 +00:00
field_cache_clear(TRUE);
}
}
/**
* Allows a module to update the database for fields and columns it controls.
*
* @param string $module
* The name of the module to update on.
*/
function field_associate_fields($module) {
- 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
// Associate field types.
$field_types =(array) module_invoke($module, 'field_info');
foreach ($field_types as $name => $field_info) {
watchdog('field', 'Updating field type %type with module %module.', array('%type' => $name, '%module' => $module));
db_update('field_config')
->fields(array('module' => $module, 'active' => 1))
->condition('type', $name)
->execute();
2009-02-05 01:21:16 +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
// Associate storage backends.
$storage_types = (array) module_invoke($module, 'field_storage_info');
foreach ($storage_types as $name => $storage_info) {
watchdog('field', 'Updating field storage %type with module %module.', array('%type' => $name, '%module' => $module));
db_update('field_config')
->fields(array('storage_module' => $module, 'storage_active' => 1))
->condition('storage_type', $name)
->execute();
}
2009-02-05 01:21:16 +00:00
}
2009-08-19 13:31:14 +00:00
/**
* Helper function to get the default value for a field on an object.
*
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
* @param $object
* The object for the operation.
* @param $field
* The field structure.
* @param $instance
* The instance structure.
2009-08-22 00:58:55 +00:00
* @param $langcode
* The field language to fill-in with the default value.
2009-08-19 13:31:14 +00:00
*/
2009-08-22 00:58:55 +00:00
function field_get_default_value($obj_type, $object, $field, $instance, $langcode = NULL) {
2009-08-19 13:31:14 +00:00
$items = array();
if (!empty($instance['default_value_function'])) {
$function = $instance['default_value_function'];
2009-08-24 00:14:23 +00:00
if (function_exists($function)) {
2009-08-22 00:58:55 +00:00
$items = $function($obj_type, $object, $field, $instance, $langcode);
2009-08-19 13:31:14 +00:00
}
}
elseif (!empty($instance['default_value'])) {
$items = $instance['default_value'];
}
return $items;
}
2009-02-05 01:21:16 +00:00
/**
2009-12-13 12:41:08 +00:00
* Helper function to filter out empty field values.
2009-02-05 01:21:16 +00:00
*
2009-12-13 12:41:08 +00:00
* @param $field
* The field definition.
* @param $items
* The field values to filter.
2009-02-05 01:21:16 +00:00
*
2009-12-13 12:41:08 +00:00
* @return
* The array of items without empty field values. The function also renumbers
* the array keys to ensure sequential deltas.
2009-02-05 01:21:16 +00:00
*/
2009-12-13 12:41:08 +00:00
function _field_filter_items($field, $items) {
2009-02-05 01:21:16 +00:00
$function = $field['module'] . '_field_is_empty';
2009-08-24 00:14:23 +00:00
function_exists($function);
2009-02-05 01:21:16 +00:00
foreach ((array) $items as $delta => $item) {
2009-12-13 12:41:08 +00:00
// Explicitly break if the function is undefined.
2009-08-19 13:31:14 +00:00
if ($function($item, $field)) {
unset($items[$delta]);
2009-02-05 01:21:16 +00:00
}
}
2009-08-19 13:31:14 +00:00
return array_values($items);
2009-02-05 01:21:16 +00:00
}
/**
* Helper function to sort items in a field according to
* user drag-n-drop reordering.
*/
function _field_sort_items($field, $items) {
if (($field['cardinality'] > 1 || $field['cardinality'] == FIELD_CARDINALITY_UNLIMITED) && isset($items[0]['_weight'])) {
usort($items, '_field_sort_items_helper');
foreach ($items as $delta => $item) {
if (is_array($items[$delta])) {
unset($items[$delta]['_weight']);
}
}
}
return $items;
}
/**
* Sort function for items order.
* (copied form element_sort(), which acts on #weight keys)
*/
function _field_sort_items_helper($a, $b) {
$a_weight = (is_array($a) && isset($a['_weight'])) ? $a['_weight'] : 0;
$b_weight = (is_array($b) && isset($b['_weight'])) ? $b['_weight'] : 0;
if ($a_weight == $b_weight) {
return 0;
}
return ($a_weight < $b_weight) ? -1 : 1;
}
/**
* Same as above, using ['_weight']['#value']
*/
function _field_sort_items_value_helper($a, $b) {
$a_weight = (is_array($a) && isset($a['_weight']['#value'])) ? $a['_weight']['#value'] : 0;
$b_weight = (is_array($b) && isset($b['_weight']['#value'])) ? $b['_weight']['#value'] : 0;
if ($a_weight == $b_weight) {
return 0;
}
return ($a_weight < $b_weight) ? -1 : 1;
}
2009-08-19 13:31:14 +00:00
/**
* Registry of pseudo-field components in a given bundle.
*
2010-01-02 15:00:34 +00:00
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
* @param $bundle
2009-08-19 13:31:14 +00:00
* The bundle name.
* @return
* The array of pseudo-field elements in the bundle.
*/
2010-01-02 15:00:34 +00:00
function field_extra_fields($obj_type, $bundle) {
2009-08-19 13:31:14 +00:00
$info = &drupal_static(__FUNCTION__, array());
if (empty($info)) {
2010-01-02 15:00:34 +00:00
$info = (array) module_invoke_all('field_extra_fields');
drupal_alter('field_extra_fields', $info);
// Add saved weights. The array is keyed by object type, bundle and
// element name.
$extra_weights = variable_get('field_extra_weights', array());
foreach ($extra_weights as $obj_type_name => $bundles) {
foreach ($bundles as $bundle_name => $weights) {
foreach ($weights as $key => $value) {
if (isset($info[$obj_type_name][$bundle_name][$key])) {
$info[$obj_type_name][$bundle_name][$key]['weight'] = $value;
}
2009-08-19 13:31:14 +00:00
}
}
}
}
2010-01-02 15:00:34 +00:00
return isset($info[$obj_type][$bundle]) ? $info[$obj_type][$bundle]: array();
}
/**
* Retrieve the user-defined weight for a 'pseudo-field' component.
*
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
* @param $bundle
* The bundle name.
* @param $pseudo_field
* The name of the 'pseudo-field'.
* @return
* The weight for the 'pseudo-field', respecting the user settings stored by
* field.module.
*/
function field_extra_field_weight($obj_type, $bundle, $pseudo_field) {
$extra = field_extra_fields($obj_type, $bundle);
if (isset($extra[$pseudo_field])) {
return $extra[$pseudo_field]['weight'];
2009-08-19 13:31:14 +00:00
}
}
/**
* Pre-render callback to adjust weights of non-field elements on objects.
*/
function _field_extra_weights_pre_render($elements) {
if (isset($elements['#extra_fields'])) {
foreach ($elements['#extra_fields'] as $key => $value) {
// Some core 'fields' use a different key in node forms and in 'view'
// render arrays. Ensure that we are not on a form first.
if (!isset($elements['#build_id']) && isset($value['view']) && isset($elements[$value['view']])) {
$elements[$value['view']]['#weight'] = $value['weight'];
}
elseif (isset($elements[$key])) {
$elements[$key]['#weight'] = $value['weight'];
}
}
}
return $elements;
}
2009-02-05 01:21:16 +00:00
/**
2010-01-02 15:00:34 +00:00
* Clear the field info and field data caches.
2009-02-05 01:21:16 +00:00
*/
2009-10-31 18:00:48 +00:00
function field_cache_clear() {
2009-02-05 01:21:16 +00:00
cache_clear_all('*', 'cache_field', TRUE);
2009-09-07 15:49:01 +00:00
field_info_cache_clear();
2009-02-05 01:21:16 +00:00
}
/**
* Like filter_xss_admin(), but with a shorter list of allowed tags.
*
* Used for items entered by administrators, like field descriptions,
* allowed values, where some (mainly inline) mark-up may be desired
* (so check_plain() is not acceptable).
*/
function field_filter_xss($string) {
return filter_xss($string, _field_filter_xss_allowed_tags());
}
/**
* List of tags allowed by field_filter_xss().
*/
function _field_filter_xss_allowed_tags() {
return array('a', 'b', 'big', 'code', 'del', 'em', 'i', 'ins', 'pre', 'q', 'small', 'span', 'strong', 'sub', 'sup', 'tt', 'ol', 'ul', 'li', 'p', 'br', 'img');
}
/**
* Human-readable list of allowed tags, for display in help texts.
*/
function _field_filter_xss_display_allowed_tags() {
return '<' . implode('> <', _field_filter_xss_allowed_tags()) . '>';
}
/**
* Format a field item for display.
*
* TODO D7 : do we still need field_format ?
* - backwards compatibility of templates - check what fallbacks we can propose...
2009-08-19 22:46:05 +00:00
* - was used by Views integration in CCK in D6 - do we need now?
2009-02-05 01:21:16 +00:00
* At least needs a little rehaul/update...
*
* Used to display a field's values outside the context of the $node, as
* when fields are displayed in Views, or to display a field in a template
2009-10-26 00:15:59 +00:00
* using a different formatter than the one set up on the 'Manage display' tab
2009-02-05 01:21:16 +00:00
* for the node's context.
*
* @param $field
* Either a field array or the name of the field.
* @param $item
* The field item(s) to be formatted (such as $node->field_foo[0],
* or $node->field_foo if the formatter handles multiple values itself)
2009-08-02 11:24:21 +00:00
* @param $formatter_type
* The name of the formatter type to use.
2009-02-05 01:21:16 +00:00
* @param $node
* Optionally, the containing node object for context purposes and
* field-instance options.
*
* @return
* A string containing the contents of the field item(s) sanitized for display.
* It will have been passed through the necessary check_plain() or check_markup()
* functions as necessary.
*/
2009-08-02 11:24:21 +00:00
function field_format($obj_type, $object, $field, $item, $formatter_type = NULL, $formatter_settings = array()) {
2009-02-05 01:21:16 +00:00
if (!is_array($field)) {
$field = field_info_field($field);
}
2009-10-09 19:22:56 +00:00
if (field_access('view', $field, $obj_type, $object)) {
2009-08-02 11:24:21 +00:00
$field_type = field_info_field_types($field['type']);
// We need $field, $instance, $obj_type, $object to be able to display a value...
2009-10-31 16:06:36 +00:00
list(, , $bundle) = entity_extract_ids($obj_type, $object);
2009-10-15 12:44:36 +00:00
$instance = field_info_instance($obj_type, $field['field_name'], $bundle);
2009-02-05 01:21:16 +00:00
$display = array(
2009-08-02 11:24:21 +00:00
'type' => $formatter_type ? $formatter_type : $field_type['default_formatter'],
2009-02-05 01:21:16 +00:00
'settings' => $formatter_settings,
);
2009-08-02 11:24:21 +00:00
$display['settings'] += field_info_formatter_settings($display['type']);
if ($display['type'] !== 'hidden') {
2009-02-05 01:21:16 +00:00
$theme = $formatter['module'] . '_formatter_' . $display['type'];
$element = array(
'#theme' => $theme,
'#field_name' => $field['field_name'],
2009-10-15 12:44:36 +00:00
'#object_type' => $obj_type,
2009-02-05 01:21:16 +00:00
'#bundle' => $bundle,
'#formatter' => $display['type'],
'#settings' => $display['settings'],
'#object' => $object,
2009-08-02 11:24:21 +00:00
'#object_type' => $obj_type,
2009-02-05 01:21:16 +00:00
'#delta' => isset($item['#delta']) ? $item['#delta'] : NULL,
);
if (field_behaviors_formatter('multiple values', $display) == FIELD_BEHAVIOR_DEFAULT) {
// Single value formatter.
// hook_field('sanitize') expects an array of items, so we build one.
$items = array($item);
$function = $field['module'] . '_field_sanitize';
if (function_exists($function)) {
$function($obj_type, $object, $field, $instance, $items);
}
$element['#item'] = $items[0];
}
else {
// Multiple values formatter.
$items = $item;
$function = $field['module'] . '_field_sanitize';
if (function_exists($function)) {
$function($obj_type, $object, $field, $instance, $items);
}
foreach ($items as $delta => $item) {
$element[$delta] = array(
'#item' => $item,
'#weight' => $delta,
);
}
}
return theme($theme, $element);
}
}
}
/**
2009-12-20 21:08:26 +00:00
* Returns a renderable array for the value of a single field in an object.
2009-02-05 01:21:16 +00:00
*
2009-12-20 21:08:26 +00:00
* The resulting output is a fully themed field with label and multiple values.
2009-02-05 01:21:16 +00:00
*
2009-12-20 21:08:26 +00:00
* This function can be used by third-party modules that need to output an
* isolated field.
* - Do not use inside node (or other entities) templates, use
* render($content[FIELD_NAME]) instead.
* - Do not use to display all fields in an object, use
* field_attach_prepare_view() and field_attach_view() instead.
2009-02-05 01:21:16 +00:00
*
2009-12-20 21:08:26 +00:00
* The function takes care of invoking the prepare_view steps. It also respects
* field access permissions.
*
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
2009-02-05 01:21:16 +00:00
* @param $object
2009-12-20 21:08:26 +00:00
* The object containing the field to display. Must at least contain the id
* key and the field data to display.
* @param $field_name
* The name of the field to display.
* @param $display
* Can be either:
2009-12-26 16:50:09 +00:00
* - The name of a view mode. The field will be displayed according to the
* display settings specified for this view mode in the $instance
2009-12-20 21:08:26 +00:00
* definition for the field in the object's bundle.
2009-12-26 16:50:09 +00:00
* If no display settings are found for the view mode, the settings for
* the 'full' view mode will be used.
2009-12-20 21:08:26 +00:00
* - An array of display settings, as found in the 'display' entry of
* $instance definitions. The following kay/value pairs are allowed:
* - label: (string) Position of the label. The default 'field' theme
* implementation supports the values 'inline', 'above' and 'hidden'.
* Defaults to 'above'.
* - type: (string) The formatter to use. Defaults to the
* 'default_formatter' for the field type, specified in
* hook_field_info(). The default formatter will also be used if the
* requested formatter is not available.
* - settings: (array) Settings specific to the formatter. Defaults to the
* formatter's default settings, specified in
* hook_field_formatter_info().
* - weight: (float) The weight to assign to the renderable element.
* Defaults to 0.
* @param $langcode
* (Optional) The language the field values are to be shown in. The site's
* current language fallback logic will be applied no values are available
* for the language. If no language is provided the current language will be
* used.
2009-02-05 01:21:16 +00:00
* @return
2009-12-20 21:08:26 +00:00
* A renderable array for the field value.
2009-02-05 01:21:16 +00:00
*/
2009-12-20 21:08:26 +00:00
function field_view_field($obj_type, $object, $field_name, $display = array(), $langcode = NULL) {
$output = array();
2009-02-05 01:21:16 +00:00
2009-12-20 21:08:26 +00:00
if ($field = field_info_field($field_name)) {
if (is_array($display)) {
// When using custom display settings, fill in default values.
$display = _field_info_prepare_instance_display($field, $display);
}
else {
2009-12-26 16:50:09 +00:00
// When using a view mode, make sure we have settings for it, or fall
// back to the 'full' view mode.
2009-12-20 21:08:26 +00:00
list(, , $bundle) = entity_extract_ids($obj_type, $object);
$instance = field_info_instance($obj_type, $field_name, $bundle);
if (!isset($instance['display'][$display])) {
$display = 'full';
}
2009-02-05 01:21:16 +00:00
}
2009-12-20 21:08:26 +00:00
// Hook invocations are done through the _field_invoke() functions in
// 'single field' mode, to reuse the language fallback logic.
$options = array('field_name' => $field_name, 'language' => field_multilingual_valid_language($langcode, FALSE));
$null = NULL;
list($id) = entity_extract_ids($obj_type, $object);
// First let the field types do their preparation.
_field_invoke_multiple('prepare_view', $obj_type, array($id => $object), $display, $null, $options);
// Then let the formatters do their own specific massaging.
_field_invoke_multiple_default('prepare_view', $obj_type, array($id => $object), $display, $null, $options);
// Build the renderable array.
$result = _field_invoke_default('view', $obj_type, $object, $display, $null, $options);
// Invoke hook_field_attach_view_alter() to tet other modules alter the
// renderable array, as in a full field_attach_view() execution.
$context = array(
'obj_type' => $obj_type,
'object' => $object,
2009-12-26 16:50:09 +00:00
'view_mode' => '_custom',
2009-12-20 21:08:26 +00:00
'langcode' => $langcode,
);
drupal_alter('field_attach_view', $result, $context);
2009-02-05 01:21:16 +00:00
2009-12-20 21:08:26 +00:00
if (isset($result[$field_name])) {
$output = $result[$field_name];
$output['#attached']['css'][] = drupal_get_path('module', 'field') . '/theme/field.css';
}
2009-02-05 01:21:16 +00:00
}
2009-12-20 21:08:26 +00:00
2009-02-05 01:21:16 +00:00
return $output;
}
2009-09-30 12:26:36 +00:00
/**
* Determine whether a field has any data.
*
* @param $field
* A field structure.
* @return
* TRUE if the field has data for any object; FALSE otherwise.
*/
function field_has_data($field) {
2009-10-22 00:49:13 +00:00
$results = field_attach_query($field['id'], array(), array('limit' => 1));
2009-09-30 12:26:36 +00:00
return !empty($results);
}
2009-02-05 01:21:16 +00:00
/**
* Determine whether the user has access to a given field.
*
* @param $op
* The operation to be performed. Possible values:
* - "edit"
* - "view"
* @param $field
* The field on which the operation is to be performed.
2009-10-09 19:22:56 +00:00
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
* @param $object
* (optional) The object for the operation.
2009-02-05 01:21:16 +00:00
* @param $account
* (optional) The account to check, if not given use currently logged in user.
* @return
* TRUE if the operation is allowed;
* FALSE if the operation is denied.
*/
2009-10-09 19:22:56 +00:00
function field_access($op, $field, $obj_type, $object = NULL, $account = NULL) {
2009-02-05 01:21:16 +00:00
global $user;
2010-01-02 18:50:51 +00:00
if (!isset($account)) {
2009-02-05 01:21:16 +00:00
$account = $user;
}
2010-01-02 18:50:51 +00:00
foreach (module_implements('field_access') as $module) {
$function = $module . '_field_access';
$access = $function($op, $field, $obj_type, $object, $account);
if ($access === FALSE) {
2009-02-05 01:21:16 +00:00
return FALSE;
}
}
return TRUE;
}
2009-09-10 22:31:58 +00:00
/**
2009-10-31 16:06:36 +00:00
* Helper function to extract the bundle name of from a bundle object.
2009-09-10 22:31:58 +00:00
*
* @param $obj_type
* The type of $object; e.g. 'node' or 'user'.
* @param $bundle
* The bundle object (or string if bundles for this object type do not exist
* as standalone objects).
* @return
* The bundle name.
*/
function field_extract_bundle($obj_type, $bundle) {
if (is_string($bundle)) {
return $bundle;
}
2009-10-31 16:06:36 +00:00
$info = entity_get_info($obj_type);
2009-09-10 22:31:58 +00:00
if (is_object($bundle) && isset($info['bundle keys']['bundle']) && isset($bundle->{$info['bundle keys']['bundle']})) {
return $bundle->{$info['bundle keys']['bundle']};
}
}
2009-02-05 01:21:16 +00:00
/**
* Theme preprocess function for field.tpl.php.
*
* @see field.tpl.php
*/
function template_preprocess_field(&$variables) {
$element = $variables['element'];
2009-12-11 16:49:40 +00:00
// @todo Convert to using drupal_html_class() after benchmarking the impact of
// doing so.
2009-12-26 12:48:14 +00:00
$field_type_css = strtr($element['#field_type'], '_', '-');
$field_name_css = strtr($element['#field_name'], '_', '-');
2009-02-05 01:21:16 +00:00
2009-11-26 19:09:32 +00:00
// Prepare an $items variable that the template can simply loop on.
2009-12-11 16:49:40 +00:00
// Filter out non-children properties that might have been added if the
// renderable array has gone through form_builder().
$items = array_intersect_key($element, array_flip(element_children($element)));
2009-02-05 01:21:16 +00:00
$additions = array(
2009-08-28 06:51:07 +00:00
'object' => $element['#object'],
2009-12-26 16:50:09 +00:00
'view_mode' => $element['#view_mode'],
2009-08-28 06:51:07 +00:00
'items' => $items,
2009-12-26 12:48:14 +00:00
'field_type' => $element['#field_type'],
'field_name' => $element['#field_name'],
2009-08-28 06:51:07 +00:00
'field_type_css' => $field_type_css,
'field_name_css' => $field_name_css,
2009-12-11 16:49:40 +00:00
'label' => check_plain($element['#title']),
2009-02-05 01:21:16 +00:00
'label_display' => $element['#label_display'],
2009-08-28 06:51:07 +00:00
'label_hidden' => $element['#label_display'] == 'hidden',
2009-08-22 00:58:55 +00:00
'field_language' => $element['#language'],
2009-12-26 12:48:14 +00:00
'field_translatable' => $element['#field_translatable'],
2009-08-28 06:51:07 +00:00
'classes_array' => array(
2009-12-26 12:48:14 +00:00
'field',
2009-08-28 06:51:07 +00:00
'field-name-' . $field_name_css,
'field-type-' . $field_type_css,
'field-label-' . $element['#label_display'],
),
2009-02-05 01:21:16 +00:00
'template_files' => array(
'field',
'field-' . $element['#field_name'],
2009-12-11 16:49:40 +00:00
'field-' . $element['#bundle'],
'field-' . $element['#field_name'] . '-' . $element['#bundle'],
2009-02-05 01:21:16 +00:00
),
);
$variables = array_merge($variables, $additions);
2009-09-11 06:48:03 +00:00
// Initialize attributes for each item.
2009-12-26 12:48:14 +00:00
$variables['item_attributes_array'] = array();
2009-09-11 06:48:03 +00:00
foreach ($variables['items'] as $delta => $item) {
$variables['item_attributes_array'][$delta] = array();
}
2009-02-05 01:21:16 +00:00
}
2009-09-11 06:48:03 +00:00
/**
* Theme process function for field.tpl.php.
*
* @see field.tpl.php
*/
function template_process_field(&$variables) {
// Flatten out attributes for each item.
foreach ($variables['items'] as $delta => $item) {
$variables['item_attributes'][$delta] = drupal_attributes($variables['item_attributes_array'][$delta]);
}
}
2009-02-05 01:21:16 +00:00
/**
* @} End of "defgroup field"
2009-08-24 00:14:23 +00:00
*/