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
*/
require(DRUPAL_ROOT . '/modules/field/field.crud.inc');
2009-06-05 18:25:41 +00:00
require(DRUPAL_ROOT . '/modules/field/field.info.inc');
2009-08-22 00:58:55 +00:00
require(DRUPAL_ROOT . '/modules/field/field.multilingual.inc');
2009-06-05 18:25:41 +00:00
require(DRUPAL_ROOT . '/modules/field/field.attach.inc');
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-02-05 01:21:16 +00:00
* generate Form API structures, display, and perform a vareity of
* 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-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);
2009-08-22 00:58:55 +00:00
/**
* The language code assigned to untranslatable fields.
*
* Defined by ISO639-2 for "No linguistic content / Not applicable".
*/
define('FIELD_LANGUAGE_NONE', 'zxx');
2009-02-05 01:21:16 +00:00
/**
* 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-02-05 01:21:16 +00:00
/**
2009-05-27 18:34:03 +00:00
* Implement hook_flush_caches.
2009-02-05 01:21:16 +00:00
*/
function field_flush_caches() {
return array('cache_field');
}
/**
2009-05-27 18:34:03 +00:00
* Implement hook_help().
2009-02-05 01:21:16 +00:00
*/
function field_help($path, $arg) {
switch ($path) {
case 'admin/help#field':
2009-06-05 18:25:41 +00:00
$output = '<p>' . t('The Field API allows custom data fields to be attached to Drupal objects and takes care of storing, loading, editing, and rendering field data. Any object type (node, user, etc.) can use the Field API to make itself "fieldable" and thus allow fields to be attached to it.') . '</p>';
2009-02-05 01:21:16 +00:00
return $output;
}
}
/**
2009-05-27 18:34:03 +00:00
* Implement hook_init().
2009-02-05 01:21:16 +00:00
*/
function field_init() {
2009-03-10 09:45:32 +00:00
drupal_add_css(drupal_get_path('module', 'field') . '/theme/field.css');
2009-02-05 01:21:16 +00:00
}
/**
2009-05-27 18:34:03 +00:00
* Implement hook_menu().
2009-02-05 01:21:16 +00:00
*/
function field_menu() {
$items = array();
// Callback for AHAH add more buttons.
$items['field/js_add_more'] = array(
'page callback' => 'field_add_more_js',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
return $items;
}
/**
2009-05-27 18:34:03 +00:00
* Implement hook_theme().
2009-02-05 01:21:16 +00:00
*/
function field_theme() {
$path = drupal_get_path('module', 'field') . '/theme';
return array(
'field' => array(
'template' => 'field',
'arguments' => array('element' => NULL),
'path' => $path,
),
'field_multiple_value_form' => array(
'arguments' => array('element' => NULL),
),
);
}
2009-08-11 14:59:40 +00:00
/**
* Implement hook_cron().
*
* 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-05-27 18:34:03 +00:00
* Implement hook_modules_installed().
2009-02-05 01:21:16 +00:00
*/
function field_modules_installed($modules) {
field_cache_clear();
}
/**
2009-05-27 18:34:03 +00:00
* Implement 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-05-27 18:34:03 +00:00
* Implement 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-05-27 18:34:03 +00:00
* Implement 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();
db_update('field_config_instance')
->fields(array('widget_active' => 0))
->condition('widget_module', $module)
->execute();
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) {
$module_fields = module_invoke($module, 'field_info');
if ($module_fields) {
foreach ($module_fields 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();
}
}
$module_widgets = module_invoke($module, 'widget_info');
if ($module_widgets) {
foreach ($module_widgets as $name => $widget_info) {
watchdog('field', 'Updating widget type %type with module %module.', array('%type' => $name, '%module' => $module));
db_update('field_config_instance')
->fields(array('widget_module' => $module, 'widget_active' => 1))
->condition('widget_type', $name)
->execute();
}
}
}
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:10:46 +00:00
if (drupal_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
/**
* Helper function to filter out empty values.
*
* On order to keep marker rows in the database, the function ensures
* that the right number of 'all columns NULL' values is kept.
*
* @param array $field
* @param array $items
* @return array
* returns filtered and adjusted item array
*
* TODO D7: poorly named...
*/
function field_set_empty($field, $items) {
$function = $field['module'] . '_field_is_empty';
2009-08-19 13:31:14 +00:00
// We ensure the function is loaded, but explicitly break if it is missing.
2009-08-24 00:10:46 +00:00
drupal_function_exists($function);
2009-02-05 01:21:16 +00:00
foreach ((array) $items as $delta => $item) {
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;
}
/**
* Registry of available build modes.
*/
function field_build_modes($obj_type) {
2009-08-19 13:31:14 +00:00
$info = &drupal_static(__FUNCTION__, array());
2009-02-05 01:21:16 +00:00
if (!isset($info[$obj_type])) {
2009-07-11 00:56:45 +00:00
$info[$obj_type] = module_invoke_all('field_build_modes', $obj_type);
2009-02-05 01:21:16 +00:00
}
return $info[$obj_type];
}
2009-08-19 13:31:14 +00:00
/**
* Registry of pseudo-field components in a given bundle.
*
* @param $bundle_name
* The bundle name.
* @return
* The array of pseudo-field elements in the bundle.
*/
function field_extra_fields($bundle_name) {
$info = &drupal_static(__FUNCTION__, array());
if (empty($info)) {
$info = array();
$bundles = field_info_bundles();
foreach ($bundles as $bundle => $bundle_label) {
// Gather information about non-field object additions.
$extra = module_invoke_all('field_extra_fields', $bundle);
drupal_alter('field_extra_fields', $extra, $bundle);
// Add saved weights.
foreach (variable_get("field_extra_weights_$bundle", array()) as $key => $value) {
// Some stored entries might not exist anymore, for instance if uploads
// have been disabled or vocabularies were deleted.
if (isset($extra[$key])) {
$extra[$key]['weight'] = $value;
}
}
$info[$bundle] = $extra;
}
}
if (array_key_exists($bundle_name, $info)) {
return $info[$bundle_name];
}
else {
return array();
}
}
/**
* 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
/**
* Clear the cached information; called in several places when field
* information is changed.
*/
function field_cache_clear($rebuild_schema = FALSE) {
cache_clear_all('*', 'cache_field', TRUE);
module_load_include('inc', 'field', 'field.info');
2009-08-11 14:59:40 +00:00
_field_info_cache_clear();
2009-02-05 01:21:16 +00:00
// Refresh the schema to pick up new information.
// TODO : if db storage gets abstracted out, we'll need to revisit how and when
// we refresh the schema...
if ($rebuild_schema) {
$schema = drupal_get_schema(NULL, TRUE);
}
}
/**
* 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
* using a different formatter than the one set up on the Display Fields tab
* 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);
}
if (field_access('view', $field)) {
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-02-05 01:21:16 +00:00
list(, , $bundle) = field_attach_extract_ids($obj_type, $object);
$instance = field_info_instance($field['field_name'], $bundle);
$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'],
'#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-05-25 10:43:54 +00:00
* Return a single field, fully themed with label and multiple values.
2009-02-05 01:21:16 +00:00
*
* To be used by third-party code (Views, Panels...) that needs to output
2009-07-13 21:09:54 +00:00
* an isolated field. Do *not* use inside node templates, use
2009-07-02 20:37:03 +00:00
* render($content[FIELD_NAME]) instead.
2009-02-05 01:21:16 +00:00
*
2009-07-02 20:37:03 +00:00
* The field will be displayed using the display options (label display,
* formatter settings...) specified in the $instance structure for the given
* build mode: $instance['display'][$build_mode].
2009-02-05 01:21:16 +00:00
*
* @param $object
* The object containing the field to display. Must at least contain the id key,
* revision key (if applicable), bundle key, and the field data.
2009-07-02 20:37:03 +00:00
* @param $field
* The field structure.
* @param $instance
* The instance structure for $field on $object's bundle.
2009-06-22 09:10:07 +00:00
* @param $build_mode
* Build mode, e.g. 'full', 'teaser'...
2009-02-05 01:21:16 +00:00
* @return
* The themed output for the field.
*/
2009-06-22 09:10:07 +00:00
function field_view_field($obj_type, $object, $field, $instance, $build_mode = 'full') {
2009-02-05 01:21:16 +00:00
$output = '';
if (isset($object->$field['field_name'])) {
$items = $object->$field['field_name'];
// One-field equivalent to _field_invoke('sanitize').
$function = $field['module'] . '_field_sanitize';
2009-08-24 00:10:46 +00:00
if (drupal_function_exists($function)) {
2009-02-05 01:21:16 +00:00
$function($obj_type, $object, $field, $instance, $items);
$object->$field['field_name'] = $items;
}
2009-06-22 09:10:07 +00:00
$view = field_default_view($obj_type, $object, $field, $instance, $items, $build_mode);
2009-02-05 01:21:16 +00:00
// TODO : what about hook_field_attach_view ?
2009-06-24 18:16:38 +00:00
$output = $view[$field['field_name']];
2009-02-05 01:21:16 +00:00
}
return $output;
}
/**
* 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.
* @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.
*/
function field_access($op, $field, $account = NULL) {
global $user;
if (is_null($account)) {
$account = $user;
}
$field_access = module_invoke_all('field_access', $op, $field, $account);
foreach ($field_access as $value) {
if ($value === FALSE) {
return FALSE;
}
}
return TRUE;
}
/**
* Theme preprocess function for field.tpl.php.
*
* The $variables array contains the following arguments:
* - $object
* - $field
* - $items
* - $teaser
* - $page
*
* @see field.tpl.php
*/
function template_preprocess_field(&$variables) {
$element = $variables['element'];
list(, , $bundle) = field_attach_extract_ids($element['#object_type'], $element['#object']);
$instance = field_info_instance($element['#field_name'], $bundle);
$field = field_info_field($element['#field_name']);
$variables['object'] = $element['#object'];
$variables['field'] = $field;
$variables['instance'] = $instance;
$variables['items'] = array();
if ($element['#single']) {
// Single value formatter.
foreach (element_children($element['items']) as $delta) {
$variables['items'][$delta] = $element['items'][$delta]['#item'];
$variables['items'][$delta]['view'] = drupal_render_children($element['items'], array($delta));
}
}
else {
// Multiple values formatter.
// We display the 'all items' output as $items[0], as if it was the
// output of a single valued field.
// Raw values are still exposed for all items.
foreach (element_children($element['items']) as $delta) {
$variables['items'][$delta] = $element['items'][$delta]['#item'];
}
$variables['items'][0]['view'] = drupal_render_children($element, array('items'));
}
2009-06-22 09:10:07 +00:00
$variables['build_mode'] = $element['#build_mode'];
2009-02-05 01:21:16 +00:00
$variables['page'] = (bool)menu_get_object();
$field_empty = TRUE;
foreach ($variables['items'] as $delta => $item) {
if (!isset($item['view']) || (empty($item['view']) && (string)$item['view'] !== '0')) {
$variables['items'][$delta]['empty'] = TRUE;
}
else {
$field_empty = FALSE;
$variables['items'][$delta]['empty'] = FALSE;
}
}
$additions = array(
'field_type' => $field['type'],
'field_name' => $field['field_name'],
'field_type_css' => strtr($field['type'], '_', '-'),
'field_name_css' => strtr($field['field_name'], '_', '-'),
'label' => check_plain(t($instance['label'])),
'label_display' => $element['#label_display'],
'field_empty' => $field_empty,
2009-08-22 00:58:55 +00:00
'field_language' => $element['#language'],
'field_translatable' => $field['translatable'],
2009-02-05 01:21:16 +00:00
'template_files' => array(
'field',
'field-' . $element['#field_name'],
'field-' . $bundle,
'field-' . $element['#field_name'] . '-' . $bundle,
),
);
$variables = array_merge($variables, $additions);
}
/**
* @} End of "defgroup field"
2009-08-24 00:10:46 +00:00
*/