First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
9
modules/field_ui/field_ui-rtl.css
Normal file
9
modules/field_ui/field_ui-rtl.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* @file
|
||||
* Right-to-left specific stylesheet for the Field UI module.
|
||||
*/
|
||||
|
||||
/* 'Manage fields' overview */
|
||||
table.field-ui-overview tr.add-new .label-input {
|
||||
float: right;
|
||||
}
|
2116
modules/field_ui/field_ui.admin.inc
Normal file
2116
modules/field_ui/field_ui.admin.inc
Normal file
File diff suppressed because it is too large
Load diff
207
modules/field_ui/field_ui.api.php
Normal file
207
modules/field_ui/field_ui.api.php
Normal file
|
@ -0,0 +1,207 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Hooks provided by the Field UI module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @addtogroup field_types
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add settings to a field settings form.
|
||||
*
|
||||
* Invoked from field_ui_field_settings_form() to allow the module defining the
|
||||
* field to add global settings (i.e. settings that do not depend on the bundle
|
||||
* or instance) to the field settings form. If the field already has data, only
|
||||
* include settings that are safe to change.
|
||||
*
|
||||
* @todo: Only the field type module knows which settings will affect the
|
||||
* field's schema, but only the field storage module knows what schema
|
||||
* changes are permitted once a field already has data. Probably we need an
|
||||
* easy way for a field type module to ask whether an update to a new schema
|
||||
* will be allowed without having to build up a fake $prior_field structure
|
||||
* for hook_field_update_forbid().
|
||||
*
|
||||
* @param $field
|
||||
* The field structure being configured.
|
||||
* @param $instance
|
||||
* The instance structure being configured.
|
||||
* @param $has_data
|
||||
* TRUE if the field already has data, FALSE if not.
|
||||
*
|
||||
* @return
|
||||
* The form definition for the field settings.
|
||||
*/
|
||||
function hook_field_settings_form($field, $instance, $has_data) {
|
||||
$settings = $field['settings'];
|
||||
$form['max_length'] = array(
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Maximum length'),
|
||||
'#default_value' => $settings['max_length'],
|
||||
'#required' => FALSE,
|
||||
'#element_validate' => array('element_validate_integer_positive'),
|
||||
'#description' => t('The maximum length of the field in characters. Leave blank for an unlimited size.'),
|
||||
);
|
||||
return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add settings to an instance field settings form.
|
||||
*
|
||||
* Invoked from field_ui_field_edit_form() to allow the module defining the
|
||||
* field to add settings for a field instance.
|
||||
*
|
||||
* @param $field
|
||||
* The field structure being configured.
|
||||
* @param $instance
|
||||
* The instance structure being configured.
|
||||
*
|
||||
* @return
|
||||
* The form definition for the field instance settings.
|
||||
*/
|
||||
function hook_field_instance_settings_form($field, $instance) {
|
||||
$settings = $instance['settings'];
|
||||
|
||||
$form['text_processing'] = array(
|
||||
'#type' => 'radios',
|
||||
'#title' => t('Text processing'),
|
||||
'#default_value' => $settings['text_processing'],
|
||||
'#options' => array(
|
||||
t('Plain text'),
|
||||
t('Filtered text (user selects text format)'),
|
||||
),
|
||||
);
|
||||
if ($field['type'] == 'text_with_summary') {
|
||||
$form['display_summary'] = array(
|
||||
'#type' => 'select',
|
||||
'#title' => t('Display summary'),
|
||||
'#options' => array(
|
||||
t('No'),
|
||||
t('Yes'),
|
||||
),
|
||||
'#description' => t('Display the summary to allow the user to input a summary value. Hide the summary to automatically fill it with a trimmed portion from the main post.'),
|
||||
'#default_value' => !empty($settings['display_summary']) ? $settings['display_summary'] : 0,
|
||||
);
|
||||
}
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add settings to a widget settings form.
|
||||
*
|
||||
* Invoked from field_ui_field_edit_form() to allow the module defining the
|
||||
* widget to add settings for a widget instance.
|
||||
*
|
||||
* @param $field
|
||||
* The field structure being configured.
|
||||
* @param $instance
|
||||
* The instance structure being configured.
|
||||
*
|
||||
* @return
|
||||
* The form definition for the widget settings.
|
||||
*/
|
||||
function hook_field_widget_settings_form($field, $instance) {
|
||||
$widget = $instance['widget'];
|
||||
$settings = $widget['settings'];
|
||||
|
||||
if ($widget['type'] == 'text_textfield') {
|
||||
$form['size'] = array(
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Size of textfield'),
|
||||
'#default_value' => $settings['size'],
|
||||
'#element_validate' => array('element_validate_integer_positive'),
|
||||
'#required' => TRUE,
|
||||
);
|
||||
}
|
||||
else {
|
||||
$form['rows'] = array(
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Rows'),
|
||||
'#default_value' => $settings['rows'],
|
||||
'#element_validate' => array('element_validate_integer_positive'),
|
||||
'#required' => TRUE,
|
||||
);
|
||||
}
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Specify the form elements for a formatter's settings.
|
||||
*
|
||||
* This hook is only invoked if hook_field_formatter_settings_summary()
|
||||
* returns a non-empty value.
|
||||
*
|
||||
* @param $field
|
||||
* The field structure being configured.
|
||||
* @param $instance
|
||||
* The instance structure being configured.
|
||||
* @param $view_mode
|
||||
* The view mode being configured.
|
||||
* @param $form
|
||||
* The (entire) configuration form array, which will usually have no use here.
|
||||
* @param $form_state
|
||||
* The form state of the (entire) configuration form.
|
||||
*
|
||||
* @return
|
||||
* The form elements for the formatter settings.
|
||||
*/
|
||||
function hook_field_formatter_settings_form($field, $instance, $view_mode, $form, &$form_state) {
|
||||
$display = $instance['display'][$view_mode];
|
||||
$settings = $display['settings'];
|
||||
|
||||
$element = array();
|
||||
|
||||
if ($display['type'] == 'text_trimmed' || $display['type'] == 'text_summary_or_trimmed') {
|
||||
$element['trim_length'] = array(
|
||||
'#title' => t('Length'),
|
||||
'#type' => 'textfield',
|
||||
'#size' => 20,
|
||||
'#default_value' => $settings['trim_length'],
|
||||
'#element_validate' => array('element_validate_integer_positive'),
|
||||
'#required' => TRUE,
|
||||
);
|
||||
}
|
||||
|
||||
return $element;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a short summary for the current formatter settings of an instance.
|
||||
*
|
||||
* If an empty result is returned, the formatter is assumed to have no
|
||||
* configurable settings, and no UI will be provided to display a settings
|
||||
* form.
|
||||
*
|
||||
* @param $field
|
||||
* The field structure.
|
||||
* @param $instance
|
||||
* The instance structure.
|
||||
* @param $view_mode
|
||||
* The view mode for which a settings summary is requested.
|
||||
*
|
||||
* @return
|
||||
* A string containing a short summary of the formatter settings.
|
||||
*/
|
||||
function hook_field_formatter_settings_summary($field, $instance, $view_mode) {
|
||||
$display = $instance['display'][$view_mode];
|
||||
$settings = $display['settings'];
|
||||
|
||||
$summary = '';
|
||||
|
||||
if ($display['type'] == 'text_trimmed' || $display['type'] == 'text_summary_or_trimmed') {
|
||||
$summary = t('Length: @chars chars', array('@chars' => $settings['trim_length']));
|
||||
}
|
||||
|
||||
return $summary;
|
||||
}
|
||||
|
||||
/**
|
||||
* @} End of "addtogroup field_types".
|
||||
*/
|
71
modules/field_ui/field_ui.css
Normal file
71
modules/field_ui/field_ui.css
Normal file
|
@ -0,0 +1,71 @@
|
|||
/**
|
||||
* @file
|
||||
* Stylesheet for the Field UI module.
|
||||
*/
|
||||
|
||||
/* 'Manage fields' and 'Manage display' overviews */
|
||||
table.field-ui-overview tr.add-new .label-input {
|
||||
float: left; /* LTR */
|
||||
}
|
||||
table.field-ui-overview tr.add-new .tabledrag-changed {
|
||||
display: none;
|
||||
}
|
||||
table.field-ui-overview tr.add-new .description {
|
||||
margin-bottom: 0;
|
||||
max-width: 250px;
|
||||
}
|
||||
table.field-ui-overview tr.add-new .form-type-machine-name .description {
|
||||
white-space: normal;
|
||||
}
|
||||
table.field-ui-overview tr.add-new .add-new-placeholder {
|
||||
font-weight: bold;
|
||||
padding-bottom: .5em;
|
||||
}
|
||||
table.field-ui-overview tr.region-title td {
|
||||
font-weight: bold;
|
||||
}
|
||||
table.field-ui-overview tr.region-message td {
|
||||
font-style: italic;
|
||||
}
|
||||
table.field-ui-overview tr.region-populated {
|
||||
display: none;
|
||||
}
|
||||
table.field-ui-overview tr.region-add-new-title {
|
||||
display: none;
|
||||
}
|
||||
table.field-ui-overview tr.add-new td {
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* 'Manage display' overview */
|
||||
#field-display-overview .field-formatter-summary-cell {
|
||||
line-height: 1em;
|
||||
}
|
||||
#field-display-overview .field-formatter-summary {
|
||||
float: left;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
#field-display-overview td.field-formatter-summary-cell span.warning {
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: .5em;
|
||||
}
|
||||
#field-display-overview .field-formatter-settings-edit-wrapper {
|
||||
float: right;
|
||||
}
|
||||
#field-display-overview .field-formatter-settings-edit {
|
||||
float: right;
|
||||
}
|
||||
#field-display-overview tr.field-formatter-settings-editing td {
|
||||
vertical-align: top;
|
||||
}
|
||||
#field-display-overview tr.field-formatter-settings-editing .field-formatter-type {
|
||||
display: none;
|
||||
}
|
||||
#field-display-overview .field-formatter-settings-edit-form .formatter-name{
|
||||
font-weight: bold;
|
||||
}
|
||||
#field-ui-display-overview-form #edit-refresh {
|
||||
display:none;
|
||||
}
|
13
modules/field_ui/field_ui.info
Normal file
13
modules/field_ui/field_ui.info
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = Field UI
|
||||
description = User interface for the Field API.
|
||||
package = Core
|
||||
version = VERSION
|
||||
core = 7.x
|
||||
dependencies[] = field
|
||||
files[] = field_ui.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2017-06-21
|
||||
version = "7.56"
|
||||
project = "drupal"
|
||||
datestamp = "1498069849"
|
||||
|
341
modules/field_ui/field_ui.js
Normal file
341
modules/field_ui/field_ui.js
Normal file
|
@ -0,0 +1,341 @@
|
|||
/**
|
||||
* @file
|
||||
* Attaches the behaviors for the Field UI module.
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
|
||||
Drupal.behaviors.fieldUIFieldOverview = {
|
||||
attach: function (context, settings) {
|
||||
$('table#field-overview', context).once('field-overview', function () {
|
||||
Drupal.fieldUIFieldOverview.attachUpdateSelects(this, settings);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Drupal.fieldUIFieldOverview = {
|
||||
/**
|
||||
* Implements dependent select dropdowns on the 'Manage fields' screen.
|
||||
*/
|
||||
attachUpdateSelects: function(table, settings) {
|
||||
var widgetTypes = settings.fieldWidgetTypes;
|
||||
var fields = settings.fields;
|
||||
|
||||
// Store the default text of widget selects.
|
||||
$('.widget-type-select', table).each(function () {
|
||||
this.initialValue = this.options[0].text;
|
||||
});
|
||||
|
||||
// 'Field type' select updates its 'Widget' select.
|
||||
$('.field-type-select', table).each(function () {
|
||||
this.targetSelect = $('.widget-type-select', $(this).closest('tr'));
|
||||
|
||||
$(this).bind('change keyup', function () {
|
||||
var selectedFieldType = this.options[this.selectedIndex].value;
|
||||
var options = (selectedFieldType in widgetTypes ? widgetTypes[selectedFieldType] : []);
|
||||
this.targetSelect.fieldUIPopulateOptions(options);
|
||||
});
|
||||
|
||||
// Trigger change on initial pageload to get the right widget options
|
||||
// when field type comes pre-selected (on failed validation).
|
||||
$(this).trigger('change', false);
|
||||
});
|
||||
|
||||
// 'Existing field' select updates its 'Widget' select and 'Label' textfield.
|
||||
$('.field-select', table).each(function () {
|
||||
this.targetSelect = $('.widget-type-select', $(this).closest('tr'));
|
||||
this.targetTextfield = $('.label-textfield', $(this).closest('tr'));
|
||||
this.targetTextfield
|
||||
.data('field_ui_edited', false)
|
||||
.bind('keyup', function (e) {
|
||||
$(this).data('field_ui_edited', $(this).val() != '');
|
||||
});
|
||||
|
||||
$(this).bind('change keyup', function (e, updateText) {
|
||||
var updateText = (typeof updateText == 'undefined' ? true : updateText);
|
||||
var selectedField = this.options[this.selectedIndex].value;
|
||||
var selectedFieldType = (selectedField in fields ? fields[selectedField].type : null);
|
||||
var selectedFieldWidget = (selectedField in fields ? fields[selectedField].widget : null);
|
||||
var options = (selectedFieldType && (selectedFieldType in widgetTypes) ? widgetTypes[selectedFieldType] : []);
|
||||
this.targetSelect.fieldUIPopulateOptions(options, selectedFieldWidget);
|
||||
|
||||
// Only overwrite the "Label" input if it has not been manually
|
||||
// changed, or if it is empty.
|
||||
if (updateText && !this.targetTextfield.data('field_ui_edited')) {
|
||||
this.targetTextfield.val(selectedField in fields ? fields[selectedField].label : '');
|
||||
}
|
||||
});
|
||||
|
||||
// Trigger change on initial pageload to get the right widget options
|
||||
// and label when field type comes pre-selected (on failed validation).
|
||||
$(this).trigger('change', false);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Populates options in a select input.
|
||||
*/
|
||||
jQuery.fn.fieldUIPopulateOptions = function (options, selected) {
|
||||
return this.each(function () {
|
||||
var disabled = false;
|
||||
if (options.length == 0) {
|
||||
options = [this.initialValue];
|
||||
disabled = true;
|
||||
}
|
||||
|
||||
// If possible, keep the same widget selected when changing field type.
|
||||
// This is based on textual value, since the internal value might be
|
||||
// different (options_buttons vs. node_reference_buttons).
|
||||
var previousSelectedText = this.options[this.selectedIndex].text;
|
||||
|
||||
var html = '';
|
||||
jQuery.each(options, function (value, text) {
|
||||
// Figure out which value should be selected. The 'selected' param
|
||||
// takes precedence.
|
||||
var is_selected = ((typeof selected != 'undefined' && value == selected) || (typeof selected == 'undefined' && text == previousSelectedText));
|
||||
html += '<option value="' + value + '"' + (is_selected ? ' selected="selected"' : '') + '>' + text + '</option>';
|
||||
});
|
||||
|
||||
$(this).html(html).attr('disabled', disabled ? 'disabled' : false);
|
||||
});
|
||||
};
|
||||
|
||||
Drupal.behaviors.fieldUIDisplayOverview = {
|
||||
attach: function (context, settings) {
|
||||
$('table#field-display-overview', context).once('field-display-overview', function() {
|
||||
Drupal.fieldUIOverview.attach(this, settings.fieldUIRowsData, Drupal.fieldUIDisplayOverview);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Drupal.fieldUIOverview = {
|
||||
/**
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*/
|
||||
attach: function (table, rowsData, rowHandlers) {
|
||||
var tableDrag = Drupal.tableDrag[table.id];
|
||||
|
||||
// Add custom tabledrag callbacks.
|
||||
tableDrag.onDrop = this.onDrop;
|
||||
tableDrag.row.prototype.onSwap = this.onSwap;
|
||||
|
||||
// Create row handlers.
|
||||
$('tr.draggable', table).each(function () {
|
||||
// Extract server-side data for the row.
|
||||
var row = this;
|
||||
if (row.id in rowsData) {
|
||||
var data = rowsData[row.id];
|
||||
data.tableDrag = tableDrag;
|
||||
|
||||
// Create the row handler, make it accessible from the DOM row element.
|
||||
var rowHandler = new rowHandlers[data.rowHandler](row, data);
|
||||
$(row).data('fieldUIRowHandler', rowHandler);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Event handler to be attached to form inputs triggering a region change.
|
||||
*/
|
||||
onChange: function () {
|
||||
var $trigger = $(this);
|
||||
var row = $trigger.closest('tr').get(0);
|
||||
var rowHandler = $(row).data('fieldUIRowHandler');
|
||||
|
||||
var refreshRows = {};
|
||||
refreshRows[rowHandler.name] = $trigger.get(0);
|
||||
|
||||
// Handle region change.
|
||||
var region = rowHandler.getRegion();
|
||||
if (region != rowHandler.region) {
|
||||
// Remove parenting.
|
||||
$('select.field-parent', row).val('');
|
||||
// Let the row handler deal with the region change.
|
||||
$.extend(refreshRows, rowHandler.regionChange(region));
|
||||
// Update the row region.
|
||||
rowHandler.region = region;
|
||||
}
|
||||
|
||||
// Ajax-update the rows.
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
},
|
||||
|
||||
/**
|
||||
* Lets row handlers react when a row is dropped into a new region.
|
||||
*/
|
||||
onDrop: function () {
|
||||
var dragObject = this;
|
||||
var row = dragObject.rowObject.element;
|
||||
var rowHandler = $(row).data('fieldUIRowHandler');
|
||||
if (typeof rowHandler !== 'undefined') {
|
||||
var regionRow = $(row).prevAll('tr.region-message').get(0);
|
||||
var region = regionRow.className.replace(/([^ ]+[ ]+)*region-([^ ]+)-message([ ]+[^ ]+)*/, '$2');
|
||||
|
||||
if (region != rowHandler.region) {
|
||||
// Let the row handler deal with the region change.
|
||||
refreshRows = rowHandler.regionChange(region);
|
||||
// Update the row region.
|
||||
rowHandler.region = region;
|
||||
// Ajax-update the rows.
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Refreshes placeholder rows in empty regions while a row is being dragged.
|
||||
*
|
||||
* Copied from block.js.
|
||||
*
|
||||
* @param table
|
||||
* The table DOM element.
|
||||
* @param rowObject
|
||||
* The tableDrag rowObject for the row being dragged.
|
||||
*/
|
||||
onSwap: function (draggedRow) {
|
||||
var rowObject = this;
|
||||
$('tr.region-message', rowObject.table).each(function () {
|
||||
// If the dragged row is in this region, but above the message row, swap
|
||||
// it down one space.
|
||||
if ($(this).prev('tr').get(0) == rowObject.group[rowObject.group.length - 1]) {
|
||||
// Prevent a recursion problem when using the keyboard to move rows up.
|
||||
if ((rowObject.method != 'keyboard' || rowObject.direction == 'down')) {
|
||||
rowObject.swap('after', this);
|
||||
}
|
||||
}
|
||||
// This region has become empty.
|
||||
if ($(this).next('tr').is(':not(.draggable)') || $(this).next('tr').length == 0) {
|
||||
$(this).removeClass('region-populated').addClass('region-empty');
|
||||
}
|
||||
// This region has become populated.
|
||||
else if ($(this).is('.region-empty')) {
|
||||
$(this).removeClass('region-empty').addClass('region-populated');
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Triggers Ajax refresh of selected rows.
|
||||
*
|
||||
* The 'format type' selects can trigger a series of changes in child rows.
|
||||
* The #ajax behavior is therefore not attached directly to the selects, but
|
||||
* triggered manually through a hidden #ajax 'Refresh' button.
|
||||
*
|
||||
* @param rows
|
||||
* A hash object, whose keys are the names of the rows to refresh (they
|
||||
* will receive the 'ajax-new-content' effect on the server side), and
|
||||
* whose values are the DOM element in the row that should get an Ajax
|
||||
* throbber.
|
||||
*/
|
||||
AJAXRefreshRows: function (rows) {
|
||||
// Separate keys and values.
|
||||
var rowNames = [];
|
||||
var ajaxElements = [];
|
||||
$.each(rows, function (rowName, ajaxElement) {
|
||||
rowNames.push(rowName);
|
||||
ajaxElements.push(ajaxElement);
|
||||
});
|
||||
|
||||
if (rowNames.length) {
|
||||
// Add a throbber next each of the ajaxElements.
|
||||
var $throbber = $('<div class="ajax-progress ajax-progress-throbber"><div class="throbber"> </div></div>');
|
||||
$(ajaxElements)
|
||||
.addClass('progress-disabled')
|
||||
.after($throbber);
|
||||
|
||||
// Fire the Ajax update.
|
||||
$('input[name=refresh_rows]').val(rowNames.join(' '));
|
||||
$('input#edit-refresh').mousedown();
|
||||
|
||||
// Disabled elements do not appear in POST ajax data, so we mark the
|
||||
// elements disabled only after firing the request.
|
||||
$(ajaxElements).attr('disabled', true);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Row handlers for the 'Manage display' screen.
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview = {};
|
||||
|
||||
/**
|
||||
* Constructor for a 'field' row handler.
|
||||
*
|
||||
* This handler is used for both fields and 'extra fields' rows.
|
||||
*
|
||||
* @param row
|
||||
* The row DOM element.
|
||||
* @param data
|
||||
* Additional data to be populated in the constructed object.
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview.field = function (row, data) {
|
||||
this.row = row;
|
||||
this.name = data.name;
|
||||
this.region = data.region;
|
||||
this.tableDrag = data.tableDrag;
|
||||
|
||||
// Attach change listener to the 'formatter type' select.
|
||||
this.$formatSelect = $('select.field-formatter-type', row);
|
||||
this.$formatSelect.change(Drupal.fieldUIOverview.onChange);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
Drupal.fieldUIDisplayOverview.field.prototype = {
|
||||
/**
|
||||
* Returns the region corresponding to the current form values of the row.
|
||||
*/
|
||||
getRegion: function () {
|
||||
return (this.$formatSelect.val() == 'hidden') ? 'hidden' : 'visible';
|
||||
},
|
||||
|
||||
/**
|
||||
* Reacts to a row being changed regions.
|
||||
*
|
||||
* This function is called when the row is moved to a different region, as a
|
||||
* result of either :
|
||||
* - a drag-and-drop action (the row's form elements then probably need to be
|
||||
* updated accordingly)
|
||||
* - user input in one of the form elements watched by the
|
||||
* Drupal.fieldUIOverview.onChange change listener.
|
||||
*
|
||||
* @param region
|
||||
* The name of the new region for the row.
|
||||
* @return
|
||||
* A hash object indicating which rows should be Ajax-updated as a result
|
||||
* of the change, in the format expected by
|
||||
* Drupal.displayOverview.AJAXRefreshRows().
|
||||
*/
|
||||
regionChange: function (region) {
|
||||
|
||||
// When triggered by a row drag, the 'format' select needs to be adjusted
|
||||
// to the new region.
|
||||
var currentValue = this.$formatSelect.val();
|
||||
switch (region) {
|
||||
case 'visible':
|
||||
if (currentValue == 'hidden') {
|
||||
// Restore the formatter back to the default formatter. Pseudo-fields do
|
||||
// not have default formatters, we just return to 'visible' for those.
|
||||
var value = (typeof this.defaultFormatter !== 'undefined') ? this.defaultFormatter : this.$formatSelect.find('option').val();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
var value = 'hidden';
|
||||
break;
|
||||
}
|
||||
if (value != undefined) {
|
||||
this.$formatSelect.val(value);
|
||||
}
|
||||
|
||||
var refreshRows = {};
|
||||
refreshRows[this.name] = this.$formatSelect.get(0);
|
||||
|
||||
return refreshRows;
|
||||
}
|
||||
};
|
||||
|
||||
})(jQuery);
|
414
modules/field_ui/field_ui.module
Normal file
414
modules/field_ui/field_ui.module
Normal file
|
@ -0,0 +1,414 @@
|
|||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Allows administrators to attach custom fields to fieldable types.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_help().
|
||||
*/
|
||||
function field_ui_help($path, $arg) {
|
||||
switch ($path) {
|
||||
case 'admin/help#field_ui':
|
||||
$output = '';
|
||||
$output .= '<h3>' . t('About') . '</h3>';
|
||||
$output .= '<p>' . t('The Field UI module provides an administrative user interface (UI) for attaching and managing fields. Fields can be defined at the content-type level for content items and comments, at the vocabulary level for taxonomy terms, and at the site level for user accounts. Other modules may also enable fields to be defined for their data. Field types (text, image, number, etc.) are defined by modules, and collected and managed by the <a href="@field">Field module</a>. For more information, see the online handbook entry for <a href="@field_ui" target="_blank">Field UI module</a>.', array('@field' => url('admin/help/field'), '@field_ui' => 'http://drupal.org/documentation/modules/field-ui')) . '</p>';
|
||||
$output .= '<h3>' . t('Uses') . '</h3>';
|
||||
$output .= '<dl>';
|
||||
$output .= '<dt>' . t('Planning fields') . '</dt>';
|
||||
$output .= '<dd>' . t('There are several decisions you will need to make before defining a field for content, comments, etc.:') . '<dl>';
|
||||
$output .= '<dt>' . t('What the field will be called') . '</dt>';
|
||||
$output .= '<dd>' . t('A field has a <em>label</em> (the name displayed in the user interface) and a <em>machine name</em> (the name used internally). The label can be changed after you create the field, if needed, but the machine name cannot be changed after you have created the field.') . '</li>';
|
||||
$output .= '<dt>' . t('What type of data the field will store') . '</dt>';
|
||||
$output .= '<dd>' . t('Each field can store one type of data (text, number, file, etc.). When you define a field, you choose a particular <em>field type</em>, which corresponds to the type of data you want to store. The field type cannot be changed after you have created the field.') . '</dd>';
|
||||
$output .= '<dt>' . t('How the data will be input and displayed') . '</dt>';
|
||||
$output .= '<dd>' . t('Each field type has one or more available <em>widgets</em> associated with it; each widget provides a mechanism for data input when you are editing (text box, select list, file upload, etc.). Each field type also has one or more display options, which determine how the field is displayed to site visitors. The widget and display options can be changed after you have created the field.') . '</dd>';
|
||||
$output .= '<dt>' . t('How many values the field will store') . '</dt>';
|
||||
$output .= '<dd>' . t('You can store one value, a specific maximum number of values, or an unlimited number of values in each field. For example, an employee identification number field might store a single number, whereas a phone number field might store multiple phone numbers. This setting can be changed after you have created the field, but if you reduce the maximum number of values, you may lose information.') . '</dd>';
|
||||
$output .= '</dl>';
|
||||
$output .= '<dt>' . t('Reusing fields') . '</dt>';
|
||||
$output .= '<dd>' . t('Once you have defined a field, you can reuse it. For example, if you define a custom image field for one content type, and you need to have an image field with the same parameters on another content type, you can add the same field to the second content type, in the <em>Add existing field</em> area of the user interface. You could also add this field to a taxonomy vocabulary, comments, user accounts, etc.') . '</dd>';
|
||||
$output .= '<dd>' . t('Some settings of a reused field are unique to each use of the field; others are shared across all places you use the field. For example, the label of a text field is unique to each use, while the setting for the number of values is shared.') . '</dd>';
|
||||
$output .= '<dd>' . t('There are two main reasons for reusing fields. First, reusing fields can save you time over defining new fields. Second, reusing fields also allows you to display, filter, group, and sort content together by field across content types. For example, the contributed Views module allows you to create lists and tables of content. So if you use the same field on multiple content types, you can create a View containing all of those content types together displaying that field, sorted by that field, and/or filtered by that field.') . '</dd>';
|
||||
$output .= '<dt>' . t('Fields on content items') . '</dt>';
|
||||
$output .= '<dd>' . t('Fields on content items are defined at the content-type level, on the <em>Manage fields</em> tab of the content type edit page (which you can reach from the <a href="@types">Content types page</a>). When you define a field for a content type, each content item of that type will have that field added to it. Some fields, such as the Title and Body, are provided for you when you create a content type, or are provided on content types created by your installation profile.', array('@types' => url('admin/structure/types'))) . '</dd>';
|
||||
$output .= '<dt>' . t('Fields on taxonomy terms') . '</dt>';
|
||||
$output .= '<dd>' . t('Fields on taxonomy terms are defined at the taxonomy vocabulary level, on the <em>Manage fields</em> tab of the vocabulary edit page (which you can reach from the <a href="@taxonomy">Taxonomy page</a>). When you define a field for a vocabulary, each term in that vocabulary will have that field added to it. For example, you could define an image field for a vocabulary to store an icon with each term.', array('@taxonomy' => url('admin/structure/taxonomy'))) . '</dd>';
|
||||
$output .= '<dt>' . t('Fields on user accounts') . '</dt>';
|
||||
$output .= '<dd>' . t('Fields on user accounts are defined on a site-wide basis on the <a href="@fields">Manage fields tab</a> of the <a href="@accounts">Account settings</a> page. When you define a field for user accounts, each user account will have that field added to it. For example, you could add a long text field to allow users to include a biography.', array('@fields' => url('admin/config/people/accounts/fields'), '@accounts' => url('admin/config/people/accounts'))) . '</dd>';
|
||||
$output .= '<dt>' . t('Fields on comments') . '</dt>';
|
||||
$output .= '<dd>' . t('Fields on comments are defined at the content-type level, on the <em>Comment fields</em> tab of the content type edit page (which you can reach from the <a href="@types">Content types page</a>). When you add a field for comments, each comment on a content item of that type will have that field added to it. For example, you could add a website field to the comments on forum posts, to allow forum commenters to add a link to their website.', array('@types' => url('admin/structure/types'))) . '</dd>';
|
||||
$output .= '</dl>';
|
||||
return $output;
|
||||
|
||||
case 'admin/reports/fields':
|
||||
return '<p>' . t('This list shows all fields currently in use for easy reference.') . '</p>';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_field_attach_rename_bundle().
|
||||
*/
|
||||
function field_ui_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new) {
|
||||
// The Field UI relies on entity_get_info() to build menu items for entity
|
||||
// field administration pages. Clear the entity info cache and ensure that
|
||||
// the menu is rebuilt.
|
||||
entity_info_cache_clear();
|
||||
menu_rebuild();
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_menu().
|
||||
*/
|
||||
function field_ui_menu() {
|
||||
$items['admin/reports/fields'] = array(
|
||||
'title' => 'Field list',
|
||||
'description' => 'Overview of fields on all entity types.',
|
||||
'page callback' => 'field_ui_fields_list',
|
||||
'access arguments' => array('administer content types'),
|
||||
'type' => MENU_NORMAL_ITEM,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
);
|
||||
|
||||
// Ensure the following is not executed until field_bundles is working and
|
||||
// tables are updated. Needed to avoid errors on initial installation.
|
||||
if (defined('MAINTENANCE_MODE')) {
|
||||
return $items;
|
||||
}
|
||||
|
||||
// Create tabs for all possible bundles.
|
||||
foreach (entity_get_info() as $entity_type => $entity_info) {
|
||||
if ($entity_info['fieldable']) {
|
||||
foreach ($entity_info['bundles'] as $bundle_name => $bundle_info) {
|
||||
if (isset($bundle_info['admin'])) {
|
||||
// Extract path information from the bundle.
|
||||
$path = $bundle_info['admin']['path'];
|
||||
// Different bundles can appear on the same path (e.g. %node_type and
|
||||
// %comment_node_type). To allow field_ui_menu_load() to extract the
|
||||
// actual bundle object from the translated menu router path
|
||||
// arguments, we need to identify the argument position of the bundle
|
||||
// name string ('bundle argument') and pass that position to the menu
|
||||
// loader. The position needs to be casted into a string; otherwise it
|
||||
// would be replaced with the bundle name string.
|
||||
if (isset($bundle_info['admin']['bundle argument'])) {
|
||||
$bundle_arg = $bundle_info['admin']['bundle argument'];
|
||||
$bundle_pos = (string) $bundle_arg;
|
||||
}
|
||||
else {
|
||||
$bundle_arg = $bundle_name;
|
||||
$bundle_pos = '0';
|
||||
}
|
||||
// This is the position of the %field_ui_menu placeholder in the
|
||||
// items below.
|
||||
$field_position = count(explode('/', $path)) + 1;
|
||||
|
||||
// Extract access information, providing defaults.
|
||||
$access = array_intersect_key($bundle_info['admin'], drupal_map_assoc(array('access callback', 'access arguments')));
|
||||
$access += array(
|
||||
'access callback' => 'user_access',
|
||||
'access arguments' => array('administer fields'),
|
||||
);
|
||||
|
||||
// Add the "administer fields" permission on top of the access
|
||||
// restriction because the field UI should only be accessible to
|
||||
// trusted users.
|
||||
if ($access['access callback'] != 'user_access' || $access['access arguments'] != array('administer fields')) {
|
||||
$access = array(
|
||||
'access callback' => 'field_ui_admin_access',
|
||||
'access arguments' => array($access['access callback'], $access['access arguments']),
|
||||
);
|
||||
}
|
||||
|
||||
$items["$path/fields"] = array(
|
||||
'title' => 'Manage fields',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_field_overview_form', $entity_type, $bundle_arg),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
'weight' => 1,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
$items["$path/fields/%field_ui_menu"] = array(
|
||||
'load arguments' => array($entity_type, $bundle_arg, $bundle_pos, '%map'),
|
||||
'title callback' => 'field_ui_menu_title',
|
||||
'title arguments' => array($field_position),
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_field_edit_form', $field_position),
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
$items["$path/fields/%field_ui_menu/edit"] = array(
|
||||
'load arguments' => array($entity_type, $bundle_arg, $bundle_pos, '%map'),
|
||||
'title' => 'Edit',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_field_edit_form', $field_position),
|
||||
'type' => MENU_DEFAULT_LOCAL_TASK,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
$items["$path/fields/%field_ui_menu/field-settings"] = array(
|
||||
'load arguments' => array($entity_type, $bundle_arg, $bundle_pos, '%map'),
|
||||
'title' => 'Field settings',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_field_settings_form', $field_position),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
$items["$path/fields/%field_ui_menu/widget-type"] = array(
|
||||
'load arguments' => array($entity_type, $bundle_arg, $bundle_pos, '%map'),
|
||||
'title' => 'Widget type',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_widget_type_form', $field_position),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
$items["$path/fields/%field_ui_menu/delete"] = array(
|
||||
'load arguments' => array($entity_type, $bundle_arg, $bundle_pos, '%map'),
|
||||
'title' => 'Delete',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_field_delete_form', $field_position),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
'weight' => 10,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
|
||||
// 'Manage display' tab.
|
||||
$items["$path/display"] = array(
|
||||
'title' => 'Manage display',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('field_ui_display_overview_form', $entity_type, $bundle_arg, 'default'),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
'weight' => 2,
|
||||
'file' => 'field_ui.admin.inc',
|
||||
) + $access;
|
||||
|
||||
// View modes secondary tabs.
|
||||
// The same base $path for the menu item (with a placeholder) can be
|
||||
// used for all bundles of a given entity type; but depending on
|
||||
// administrator settings, each bundle has a different set of view
|
||||
// modes available for customisation. So we define menu items for all
|
||||
// view modes, and use an access callback to determine which ones are
|
||||
// actually visible for a given bundle.
|
||||
$weight = 0;
|
||||
$view_modes = array('default' => array('label' => t('Default'))) + $entity_info['view modes'];
|
||||
foreach ($view_modes as $view_mode => $view_mode_info) {
|
||||
$items["$path/display/$view_mode"] = array(
|
||||
'title' => $view_mode_info['label'],
|
||||
'page arguments' => array('field_ui_display_overview_form', $entity_type, $bundle_arg, $view_mode),
|
||||
// The access callback needs to check both the current 'custom
|
||||
// display' setting for the view mode, and the overall access
|
||||
// rules for the bundle admin pages.
|
||||
'access callback' => '_field_ui_view_mode_menu_access',
|
||||
'access arguments' => array_merge(array($entity_type, $bundle_arg, $view_mode, $access['access callback']), $access['access arguments']),
|
||||
'type' => ($view_mode == 'default' ? MENU_DEFAULT_LOCAL_TASK : MENU_LOCAL_TASK),
|
||||
'weight' => ($view_mode == 'default' ? -10 : $weight++),
|
||||
'file' => 'field_ui.admin.inc',
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return $items;
|
||||
}
|
||||
|
||||
/**
|
||||
* Menu loader; Load a field instance based on field and bundle name.
|
||||
*
|
||||
* @param $field_name
|
||||
* The name of the field, as contained in the path.
|
||||
* @param $entity_type
|
||||
* The name of the entity.
|
||||
* @param $bundle_name
|
||||
* The name of the bundle, as contained in the path.
|
||||
* @param $bundle_pos
|
||||
* The position of $bundle_name in $map.
|
||||
* @param $map
|
||||
* The translated menu router path argument map.
|
||||
*
|
||||
* @return
|
||||
* The field instance array.
|
||||
*
|
||||
* @ingroup field
|
||||
*/
|
||||
function field_ui_menu_load($field_name, $entity_type, $bundle_name, $bundle_pos, $map) {
|
||||
// Extract the actual bundle name from the translated argument map.
|
||||
// The menu router path to manage fields of an entity can be shared among
|
||||
// multiple bundles. For example:
|
||||
// - admin/structure/types/manage/%node_type/fields/%field_ui_menu
|
||||
// - admin/structure/types/manage/%comment_node_type/fields/%field_ui_menu
|
||||
// The menu system will automatically load the correct bundle depending on the
|
||||
// actual path arguments, but this menu loader function only receives the node
|
||||
// type string as $bundle_name, which is not the bundle name for comments.
|
||||
// We therefore leverage the dynamically translated $map provided by the menu
|
||||
// system to retrieve the actual bundle and bundle name for the current path.
|
||||
if ($bundle_pos > 0) {
|
||||
$bundle = $map[$bundle_pos];
|
||||
$bundle_name = field_extract_bundle($entity_type, $bundle);
|
||||
}
|
||||
// Check whether the field exists at all.
|
||||
if ($field = field_info_field($field_name)) {
|
||||
// Only return the field if a field instance exists for the given entity
|
||||
// type and bundle.
|
||||
if ($instance = field_info_instance($entity_type, $field_name, $bundle_name)) {
|
||||
return $instance;
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Menu title callback.
|
||||
*/
|
||||
function field_ui_menu_title($instance) {
|
||||
return $instance['label'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Menu access callback for the 'view mode display settings' pages.
|
||||
*/
|
||||
function _field_ui_view_mode_menu_access($entity_type, $bundle, $view_mode, $access_callback) {
|
||||
// First, determine visibility according to the 'use custom display'
|
||||
// setting for the view mode.
|
||||
$bundle = field_extract_bundle($entity_type, $bundle);
|
||||
$view_mode_settings = field_view_mode_settings($entity_type, $bundle);
|
||||
$visibility = ($view_mode == 'default') || !empty($view_mode_settings[$view_mode]['custom_settings']);
|
||||
|
||||
// Then, determine access according to the $access parameter. This duplicates
|
||||
// part of _menu_check_access().
|
||||
if ($visibility) {
|
||||
// Grab the variable 'access arguments' part.
|
||||
$all_args = func_get_args();
|
||||
$args = array_slice($all_args, 4);
|
||||
$callback = empty($access_callback) ? 0 : trim($access_callback);
|
||||
if (is_numeric($callback)) {
|
||||
return (bool) $callback;
|
||||
}
|
||||
else {
|
||||
// As call_user_func_array() is quite slow and user_access is a very
|
||||
// common callback, it is worth making a special case for it.
|
||||
if ($access_callback == 'user_access') {
|
||||
return (count($args) == 1) ? user_access($args[0]) : user_access($args[0], $args[1]);
|
||||
}
|
||||
elseif (function_exists($access_callback)) {
|
||||
return call_user_func_array($access_callback, $args);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_theme().
|
||||
*/
|
||||
function field_ui_theme() {
|
||||
return array(
|
||||
'field_ui_table' => array(
|
||||
'render element' => 'elements',
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_element_info().
|
||||
*/
|
||||
function field_ui_element_info() {
|
||||
return array(
|
||||
'field_ui_table' => array(
|
||||
'#theme' => 'field_ui_table',
|
||||
'#pre_render' => array('field_ui_table_pre_render'),
|
||||
'#regions' => array('' => array()),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_field_attach_create_bundle().
|
||||
*/
|
||||
function field_ui_field_attach_create_bundle($entity_type, $bundle) {
|
||||
// When a new bundle is created, the menu needs to be rebuilt to add our
|
||||
// menu item tabs.
|
||||
variable_set('menu_rebuild_needed', TRUE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines the administration path for a bundle.
|
||||
*/
|
||||
function _field_ui_bundle_admin_path($entity_type, $bundle_name) {
|
||||
$bundles = field_info_bundles($entity_type);
|
||||
$bundle_info = $bundles[$bundle_name];
|
||||
if (isset($bundle_info['admin'])) {
|
||||
return isset($bundle_info['admin']['real path']) ? $bundle_info['admin']['real path'] : $bundle_info['admin']['path'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Identifies inactive fields within a bundle.
|
||||
*/
|
||||
function field_ui_inactive_instances($entity_type, $bundle_name = NULL) {
|
||||
$params = array('entity_type' => $entity_type);
|
||||
|
||||
if (empty($bundle_name)) {
|
||||
$active = field_info_instances($entity_type);
|
||||
$inactive = array();
|
||||
}
|
||||
else {
|
||||
// Restrict to the specified bundle. For consistency with the case where
|
||||
// $bundle_name is NULL, the $active and $inactive arrays are keyed by
|
||||
// bundle name first.
|
||||
$params['bundle'] = $bundle_name;
|
||||
$active = array($bundle_name => field_info_instances($entity_type, $bundle_name));
|
||||
$inactive = array($bundle_name => array());
|
||||
}
|
||||
|
||||
// Iterate on existing definitions, and spot those that do not appear in the
|
||||
// $active list collected earlier.
|
||||
$all_instances = field_read_instances($params, array('include_inactive' => TRUE));
|
||||
foreach ($all_instances as $instance) {
|
||||
if (!isset($active[$instance['bundle']][$instance['field_name']])) {
|
||||
$inactive[$instance['bundle']][$instance['field_name']] = $instance;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($bundle_name)) {
|
||||
return $inactive[$bundle_name];
|
||||
}
|
||||
return $inactive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_form_FORM_ID_alter().
|
||||
*
|
||||
* Adds a button 'Save and add fields' to the 'Create content type' form.
|
||||
*
|
||||
* @see node_type_form()
|
||||
* @see field_ui_form_node_type_form_submit()
|
||||
*/
|
||||
function field_ui_form_node_type_form_alter(&$form, $form_state) {
|
||||
// We want to display the button only on add page.
|
||||
if (empty($form['#node_type']->type)) {
|
||||
$form['actions']['save_continue'] = array(
|
||||
'#type' => 'submit',
|
||||
'#value' => t('Save and add fields'),
|
||||
'#weight' => 45,
|
||||
);
|
||||
$form['#submit'][] = 'field_ui_form_node_type_form_submit';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Form submission handler for the 'Save and add fields' button.
|
||||
*
|
||||
* @see field_ui_form_node_type_form_alter()
|
||||
*/
|
||||
function field_ui_form_node_type_form_submit($form, &$form_state) {
|
||||
if ($form_state['triggering_element']['#parents'][0] === 'save_continue') {
|
||||
$form_state['redirect'] = _field_ui_bundle_admin_path('node', $form_state['values']['type']) .'/fields';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Access callback to determine if a user is allowed to use the field UI.
|
||||
*
|
||||
* Only grant access if the user has both the "administer fields" permission and
|
||||
* is granted access by the entity specific restrictions.
|
||||
*/
|
||||
function field_ui_admin_access($access_callback, $access_arguments) {
|
||||
return user_access('administer fields') && call_user_func_array($access_callback, $access_arguments);
|
||||
}
|
764
modules/field_ui/field_ui.test
Normal file
764
modules/field_ui/field_ui.test
Normal file
|
@ -0,0 +1,764 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Tests for field_ui.module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Provides common functionality for the Field UI test classes.
|
||||
*/
|
||||
class FieldUITestCase extends DrupalWebTestCase {
|
||||
|
||||
function setUp() {
|
||||
// Since this is a base class for many test cases, support the same
|
||||
// flexibility that DrupalWebTestCase::setUp() has for the modules to be
|
||||
// passed in as either an array or a variable number of string arguments.
|
||||
$modules = func_get_args();
|
||||
if (isset($modules[0]) && is_array($modules[0])) {
|
||||
$modules = $modules[0];
|
||||
}
|
||||
$modules[] = 'field_test';
|
||||
parent::setUp($modules);
|
||||
|
||||
// Create test user.
|
||||
$admin_user = $this->drupalCreateUser(array('access content', 'administer content types', 'administer taxonomy', 'administer fields'));
|
||||
$this->drupalLogin($admin_user);
|
||||
|
||||
// Create content type, with underscores.
|
||||
$type_name = strtolower($this->randomName(8)) . '_test';
|
||||
$type = $this->drupalCreateContentType(array('name' => $type_name, 'type' => $type_name));
|
||||
$this->type = $type->type;
|
||||
// Store a valid URL name, with hyphens instead of underscores.
|
||||
$this->hyphen_type = str_replace('_', '-', $this->type);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new field through the Field UI.
|
||||
*
|
||||
* @param $bundle_path
|
||||
* Admin path of the bundle that the new field is to be attached to.
|
||||
* @param $initial_edit
|
||||
* $edit parameter for drupalPost() on the first step ('Manage fields'
|
||||
* screen).
|
||||
* @param $field_edit
|
||||
* $edit parameter for drupalPost() on the second step ('Field settings'
|
||||
* form).
|
||||
* @param $instance_edit
|
||||
* $edit parameter for drupalPost() on the third step ('Instance settings'
|
||||
* form).
|
||||
*/
|
||||
function fieldUIAddNewField($bundle_path, $initial_edit, $field_edit = array(), $instance_edit = array()) {
|
||||
// Use 'test_field' field type by default.
|
||||
$initial_edit += array(
|
||||
'fields[_add_new_field][type]' => 'test_field',
|
||||
'fields[_add_new_field][widget_type]' => 'test_field_widget',
|
||||
);
|
||||
$label = $initial_edit['fields[_add_new_field][label]'];
|
||||
$field_name = $initial_edit['fields[_add_new_field][field_name]'];
|
||||
|
||||
// First step : 'Add new field' on the 'Manage fields' page.
|
||||
$this->drupalPost("$bundle_path/fields", $initial_edit, t('Save'));
|
||||
$this->assertRaw(t('These settings apply to the %label field everywhere it is used.', array('%label' => $label)), 'Field settings page was displayed.');
|
||||
|
||||
// Second step : 'Field settings' form.
|
||||
$this->drupalPost(NULL, $field_edit, t('Save field settings'));
|
||||
$this->assertRaw(t('Updated field %label field settings.', array('%label' => $label)), 'Redirected to instance and widget settings page.');
|
||||
|
||||
// Third step : 'Instance settings' form.
|
||||
$this->drupalPost(NULL, $instance_edit, t('Save settings'));
|
||||
$this->assertRaw(t('Saved %label configuration.', array('%label' => $label)), 'Redirected to "Manage fields" page.');
|
||||
|
||||
// Check that the field appears in the overview form.
|
||||
$this->assertFieldByXPath('//table[@id="field-overview"]//td[1]', $label, 'Field was created and appears in the overview page.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an existing field through the Field UI.
|
||||
*
|
||||
* @param $bundle_path
|
||||
* Admin path of the bundle that the field is to be attached to.
|
||||
* @param $initial_edit
|
||||
* $edit parameter for drupalPost() on the first step ('Manage fields'
|
||||
* screen).
|
||||
* @param $instance_edit
|
||||
* $edit parameter for drupalPost() on the second step ('Instance settings'
|
||||
* form).
|
||||
*/
|
||||
function fieldUIAddExistingField($bundle_path, $initial_edit, $instance_edit = array()) {
|
||||
// Use 'test_field_widget' by default.
|
||||
$initial_edit += array(
|
||||
'fields[_add_existing_field][widget_type]' => 'test_field_widget',
|
||||
);
|
||||
$label = $initial_edit['fields[_add_existing_field][label]'];
|
||||
$field_name = $initial_edit['fields[_add_existing_field][field_name]'];
|
||||
|
||||
// First step : 'Add existing field' on the 'Manage fields' page.
|
||||
$this->drupalPost("$bundle_path/fields", $initial_edit, t('Save'));
|
||||
|
||||
// Second step : 'Instance settings' form.
|
||||
$this->drupalPost(NULL, $instance_edit, t('Save settings'));
|
||||
$this->assertRaw(t('Saved %label configuration.', array('%label' => $label)), 'Redirected to "Manage fields" page.');
|
||||
|
||||
// Check that the field appears in the overview form.
|
||||
$this->assertFieldByXPath('//table[@id="field-overview"]//td[1]', $label, 'Field was created and appears in the overview page.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes a field instance through the Field UI.
|
||||
*
|
||||
* @param $bundle_path
|
||||
* Admin path of the bundle that the field instance is to be deleted from.
|
||||
* @param $field_name
|
||||
* The name of the field.
|
||||
* @param $label
|
||||
* The label of the field.
|
||||
* @param $bundle_label
|
||||
* The label of the bundle.
|
||||
*/
|
||||
function fieldUIDeleteField($bundle_path, $field_name, $label, $bundle_label) {
|
||||
// Display confirmation form.
|
||||
$this->drupalGet("$bundle_path/fields/$field_name/delete");
|
||||
$this->assertRaw(t('Are you sure you want to delete the field %label', array('%label' => $label)), 'Delete confirmation was found.');
|
||||
|
||||
// Submit confirmation form.
|
||||
$this->drupalPost(NULL, array(), t('Delete'));
|
||||
$this->assertRaw(t('The field %label has been deleted from the %type content type.', array('%label' => $label, '%type' => $bundle_label)), 'Delete message was found.');
|
||||
|
||||
// Check that the field does not appear in the overview form.
|
||||
$this->assertNoFieldByXPath('//table[@id="field-overview"]//span[@class="label-field"]', $label, 'Field does not appear in the overview page.');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the functionality of the 'Manage fields' screen.
|
||||
*/
|
||||
class FieldUIManageFieldsTestCase extends FieldUITestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Manage fields',
|
||||
'description' => 'Test the Field UI "Manage fields" screen.',
|
||||
'group' => 'Field UI',
|
||||
);
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
// Create random field name.
|
||||
$this->field_label = $this->randomName(8);
|
||||
$this->field_name_input = strtolower($this->randomName(8));
|
||||
$this->field_name = 'field_'. $this->field_name_input;
|
||||
}
|
||||
|
||||
/**
|
||||
* Runs the field CRUD tests.
|
||||
*
|
||||
* In order to act on the same fields, and not create the fields over and over
|
||||
* again the following tests create, update and delete the same fields.
|
||||
*/
|
||||
function testCRUDFields() {
|
||||
$this->manageFieldsPage();
|
||||
$this->createField();
|
||||
$this->updateField();
|
||||
$this->addExistingField();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the manage fields page.
|
||||
*/
|
||||
function manageFieldsPage() {
|
||||
$this->drupalGet('admin/structure/types/manage/' . $this->hyphen_type . '/fields');
|
||||
// Check all table columns.
|
||||
$table_headers = array(
|
||||
t('Label'),
|
||||
t('Machine name'),
|
||||
t('Field type'),
|
||||
t('Widget'),
|
||||
t('Operations'),
|
||||
);
|
||||
foreach ($table_headers as $table_header) {
|
||||
// We check that the label appear in the table headings.
|
||||
$this->assertRaw($table_header . '</th>', format_string('%table_header table header was found.', array('%table_header' => $table_header)));
|
||||
}
|
||||
|
||||
// "Add new field" and "Add existing field" aren't a table heading so just
|
||||
// test the text.
|
||||
foreach (array('Add new field', 'Add existing field') as $element) {
|
||||
$this->assertText($element, format_string('"@element" was found.', array('@element' => $element)));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests adding a new field.
|
||||
*
|
||||
* @todo Assert properties can bet set in the form and read back in $field and
|
||||
* $instances.
|
||||
*/
|
||||
function createField() {
|
||||
// Create a test field.
|
||||
$edit = array(
|
||||
'fields[_add_new_field][label]' => $this->field_label,
|
||||
'fields[_add_new_field][field_name]' => $this->field_name_input,
|
||||
);
|
||||
$this->fieldUIAddNewField('admin/structure/types/manage/' . $this->hyphen_type, $edit);
|
||||
|
||||
// Assert the field appears in the "add existing field" section for
|
||||
// different entity types; e.g. if a field was added in a node entity, it
|
||||
// should also appear in the 'taxonomy term' entity.
|
||||
$vocabulary = taxonomy_vocabulary_load(1);
|
||||
$this->drupalGet('admin/structure/taxonomy/' . $vocabulary->machine_name . '/fields');
|
||||
$this->assertTrue($this->xpath('//select[@name="fields[_add_existing_field][field_name]"]//option[@value="' . $this->field_name . '"]'), 'Existing field was found in account settings.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests editing an existing field.
|
||||
*/
|
||||
function updateField() {
|
||||
// Go to the field edit page.
|
||||
$this->drupalGet('admin/structure/types/manage/' . $this->hyphen_type . '/fields/' . $this->field_name);
|
||||
|
||||
// Populate the field settings with new settings.
|
||||
$string = 'updated dummy test string';
|
||||
$edit = array(
|
||||
'field[settings][test_field_setting]' => $string,
|
||||
'instance[settings][test_instance_setting]' => $string,
|
||||
'instance[widget][settings][test_widget_setting]' => $string,
|
||||
);
|
||||
$this->drupalPost(NULL, $edit, t('Save settings'));
|
||||
|
||||
// Assert the field settings are correct.
|
||||
$this->assertFieldSettings($this->type, $this->field_name, $string);
|
||||
|
||||
// Assert redirection back to the "manage fields" page.
|
||||
$this->assertText(t('Saved @label configuration.', array('@label' => $this->field_label)), 'Redirected to "Manage fields" page.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests adding an existing field in another content type.
|
||||
*/
|
||||
function addExistingField() {
|
||||
// Check "Add existing field" appears.
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields');
|
||||
$this->assertRaw(t('Add existing field'), '"Add existing field" was found.');
|
||||
|
||||
// Check that the list of options respects entity type restrictions on
|
||||
// fields. The 'comment' field is restricted to the 'comment' entity type
|
||||
// and should not appear in the list.
|
||||
$this->assertFalse($this->xpath('//select[@id="edit-add-existing-field-field-name"]//option[@value="comment"]'), 'The list of options respects entity type restrictions.');
|
||||
|
||||
// Add a new field based on an existing field.
|
||||
$edit = array(
|
||||
'fields[_add_existing_field][label]' => $this->field_label . '_2',
|
||||
'fields[_add_existing_field][field_name]' => $this->field_name,
|
||||
);
|
||||
$this->fieldUIAddExistingField("admin/structure/types/manage/page", $edit);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts field settings are as expected.
|
||||
*
|
||||
* @param $bundle
|
||||
* The bundle name for the instance.
|
||||
* @param $field_name
|
||||
* The field name for the instance.
|
||||
* @param $string
|
||||
* The settings text.
|
||||
* @param $entity_type
|
||||
* The entity type for the instance.
|
||||
*/
|
||||
function assertFieldSettings($bundle, $field_name, $string = 'dummy test string', $entity_type = 'node') {
|
||||
// Reset the fields info.
|
||||
field_info_cache_clear();
|
||||
// Assert field settings.
|
||||
$field = field_info_field($field_name);
|
||||
$this->assertTrue($field['settings']['test_field_setting'] == $string, 'Field settings were found.');
|
||||
|
||||
// Assert instance and widget settings.
|
||||
$instance = field_info_instance($entity_type, $field_name, $bundle);
|
||||
$this->assertTrue($instance['settings']['test_instance_setting'] == $string, 'Field instance settings were found.');
|
||||
$this->assertTrue($instance['widget']['settings']['test_widget_setting'] == $string, 'Field widget settings were found.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that default value is correctly validated and saved.
|
||||
*/
|
||||
function testDefaultValue() {
|
||||
// Create a test field and instance.
|
||||
$field_name = 'test';
|
||||
$field = array(
|
||||
'field_name' => $field_name,
|
||||
'type' => 'test_field'
|
||||
);
|
||||
field_create_field($field);
|
||||
$instance = array(
|
||||
'field_name' => $field_name,
|
||||
'entity_type' => 'node',
|
||||
'bundle' => $this->type,
|
||||
);
|
||||
field_create_instance($instance);
|
||||
|
||||
$langcode = LANGUAGE_NONE;
|
||||
$admin_path = 'admin/structure/types/manage/' . $this->hyphen_type . '/fields/' . $field_name;
|
||||
$element_id = "edit-$field_name-$langcode-0-value";
|
||||
$element_name = "{$field_name}[$langcode][0][value]";
|
||||
$this->drupalGet($admin_path);
|
||||
$this->assertFieldById($element_id, '', 'The default value widget was empty.');
|
||||
|
||||
// Check that invalid default values are rejected.
|
||||
$edit = array($element_name => '-1');
|
||||
$this->drupalPost($admin_path, $edit, t('Save settings'));
|
||||
$this->assertText("$field_name does not accept the value -1", 'Form vaildation failed.');
|
||||
|
||||
// Check that the default value is saved.
|
||||
$edit = array($element_name => '1');
|
||||
$this->drupalPost($admin_path, $edit, t('Save settings'));
|
||||
$this->assertText("Saved $field_name configuration", 'The form was successfully submitted.');
|
||||
$instance = field_info_instance('node', $field_name, $this->type);
|
||||
$this->assertEqual($instance['default_value'], array(array('value' => 1)), 'The default value was correctly saved.');
|
||||
|
||||
// Check that the default value shows up in the form
|
||||
$this->drupalGet($admin_path);
|
||||
$this->assertFieldById($element_id, '1', 'The default value widget was displayed with the correct value.');
|
||||
|
||||
// Check that the default value can be emptied.
|
||||
$edit = array($element_name => '');
|
||||
$this->drupalPost(NULL, $edit, t('Save settings'));
|
||||
$this->assertText("Saved $field_name configuration", 'The form was successfully submitted.');
|
||||
field_info_cache_clear();
|
||||
$instance = field_info_instance('node', $field_name, $this->type);
|
||||
$this->assertEqual($instance['default_value'], NULL, 'The default value was correctly saved.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that deletion removes fields and instances as expected.
|
||||
*/
|
||||
function testDeleteField() {
|
||||
// Create a new field.
|
||||
$bundle_path1 = 'admin/structure/types/manage/' . $this->hyphen_type;
|
||||
$edit1 = array(
|
||||
'fields[_add_new_field][label]' => $this->field_label,
|
||||
'fields[_add_new_field][field_name]' => $this->field_name_input,
|
||||
);
|
||||
$this->fieldUIAddNewField($bundle_path1, $edit1);
|
||||
|
||||
// Create an additional node type.
|
||||
$type_name2 = strtolower($this->randomName(8)) . '_test';
|
||||
$type2 = $this->drupalCreateContentType(array('name' => $type_name2, 'type' => $type_name2));
|
||||
$type_name2 = $type2->type;
|
||||
$hyphen_type2 = str_replace('_', '-', $type_name2);
|
||||
|
||||
// Add an instance to the second node type.
|
||||
$bundle_path2 = 'admin/structure/types/manage/' . $hyphen_type2;
|
||||
$edit2 = array(
|
||||
'fields[_add_existing_field][label]' => $this->field_label,
|
||||
'fields[_add_existing_field][field_name]' => $this->field_name,
|
||||
);
|
||||
$this->fieldUIAddExistingField($bundle_path2, $edit2);
|
||||
|
||||
// Delete the first instance.
|
||||
$this->fieldUIDeleteField($bundle_path1, $this->field_name, $this->field_label, $this->type);
|
||||
|
||||
// Reset the fields info.
|
||||
field_info_cache_clear();
|
||||
// Check that the field instance was deleted.
|
||||
$this->assertNull(field_info_instance('node', $this->field_name, $this->type), 'Field instance was deleted.');
|
||||
// Check that the field was not deleted
|
||||
$this->assertNotNull(field_info_field($this->field_name), 'Field was not deleted.');
|
||||
|
||||
// Delete the second instance.
|
||||
$this->fieldUIDeleteField($bundle_path2, $this->field_name, $this->field_label, $type_name2);
|
||||
|
||||
// Reset the fields info.
|
||||
field_info_cache_clear();
|
||||
// Check that the field instance was deleted.
|
||||
$this->assertNull(field_info_instance('node', $this->field_name, $type_name2), 'Field instance was deleted.');
|
||||
// Check that the field was deleted too.
|
||||
$this->assertNull(field_info_field($this->field_name), 'Field was deleted.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that Field UI respects the 'no_ui' option in hook_field_info().
|
||||
*/
|
||||
function testHiddenFields() {
|
||||
$bundle_path = 'admin/structure/types/manage/' . $this->hyphen_type . '/fields/';
|
||||
|
||||
// Check that the field type is not available in the 'add new field' row.
|
||||
$this->drupalGet($bundle_path);
|
||||
$this->assertFalse($this->xpath('//select[@id="edit-add-new-field-type"]//option[@value="hidden_test_field"]'), "The 'add new field' select respects field types 'no_ui' property.");
|
||||
|
||||
// Create a field and an instance programmatically.
|
||||
$field_name = 'hidden_test_field';
|
||||
field_create_field(array('field_name' => $field_name, 'type' => $field_name));
|
||||
$instance = array(
|
||||
'field_name' => $field_name,
|
||||
'bundle' => $this->type,
|
||||
'entity_type' => 'node',
|
||||
'label' => t('Hidden field'),
|
||||
'widget' => array('type' => 'test_field_widget'),
|
||||
);
|
||||
field_create_instance($instance);
|
||||
$this->assertTrue(field_read_instance('node', $field_name, $this->type), format_string('An instance of the field %field was created programmatically.', array('%field' => $field_name)));
|
||||
|
||||
// Check that the newly added instance appears on the 'Manage Fields'
|
||||
// screen.
|
||||
$this->drupalGet($bundle_path);
|
||||
$this->assertFieldByXPath('//table[@id="field-overview"]//td[1]', $instance['label'], 'Field was created and appears in the overview page.');
|
||||
|
||||
// Check that the instance does not appear in the 'add existing field' row
|
||||
// on other bundles.
|
||||
$bundle_path = 'admin/structure/types/manage/article/fields/';
|
||||
$this->drupalGet($bundle_path);
|
||||
$this->assertFalse($this->xpath('//select[@id="edit-add-existing-field-field-name"]//option[@value=:field_name]', array(':field_name' => $field_name)), "The 'add existing field' select respects field types 'no_ui' property.");
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests renaming a bundle.
|
||||
*/
|
||||
function testRenameBundle() {
|
||||
$type2 = strtolower($this->randomName(8)) . '_' .'test';
|
||||
$hyphen_type2 = str_replace('_', '-', $type2);
|
||||
|
||||
$options = array(
|
||||
'type' => $type2,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type, $options, t('Save content type'));
|
||||
|
||||
$this->drupalGet('admin/structure/types/manage/' . $hyphen_type2 . '/fields');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that a duplicate field name is caught by validation.
|
||||
*/
|
||||
function testDuplicateFieldName() {
|
||||
// field_tags already exists, so we're expecting an error when trying to
|
||||
// create a new field with the same name.
|
||||
$edit = array(
|
||||
'fields[_add_new_field][field_name]' => 'tags',
|
||||
'fields[_add_new_field][label]' => $this->randomName(),
|
||||
'fields[_add_new_field][type]' => 'taxonomy_term_reference',
|
||||
'fields[_add_new_field][widget_type]' => 'options_select',
|
||||
);
|
||||
$url = 'admin/structure/types/manage/' . $this->hyphen_type . '/fields';
|
||||
$this->drupalPost($url, $edit, t('Save'));
|
||||
|
||||
$this->assertText(t('The machine-readable name is already in use. It must be unique.'));
|
||||
$this->assertUrl($url, array(), 'Stayed on the same page.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that external URLs in the 'destinations' query parameter are blocked.
|
||||
*/
|
||||
function testExternalDestinations() {
|
||||
$path = 'admin/structure/types/manage/article/fields/field_tags/field-settings';
|
||||
$options = array(
|
||||
'query' => array('destinations' => array('http://example.com')),
|
||||
);
|
||||
$this->drupalPost($path, NULL, t('Save field settings'), $options);
|
||||
|
||||
$this->assertUrl('admin/structure/types/manage/article/fields', array(), 'Stayed on the same site.');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the functionality of the 'Manage display' screens.
|
||||
*/
|
||||
class FieldUIManageDisplayTestCase extends FieldUITestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Manage display',
|
||||
'description' => 'Test the Field UI "Manage display" screens.',
|
||||
'group' => 'Field UI',
|
||||
);
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
parent::setUp(array('search'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests formatter settings.
|
||||
*/
|
||||
function testFormatterUI() {
|
||||
$manage_fields = 'admin/structure/types/manage/' . $this->hyphen_type;
|
||||
$manage_display = $manage_fields . '/display';
|
||||
|
||||
// Create a field, and a node with some data for the field.
|
||||
$edit = array(
|
||||
'fields[_add_new_field][label]' => 'Test field',
|
||||
'fields[_add_new_field][field_name]' => 'test',
|
||||
);
|
||||
$this->fieldUIAddNewField($manage_fields, $edit);
|
||||
|
||||
// Clear the test-side cache and get the saved field instance.
|
||||
field_info_cache_clear();
|
||||
$instance = field_info_instance('node', 'field_test', $this->type);
|
||||
$format = $instance['display']['default']['type'];
|
||||
$default_settings = field_info_formatter_settings($format);
|
||||
$setting_name = key($default_settings);
|
||||
$setting_value = $instance['display']['default']['settings'][$setting_name];
|
||||
|
||||
// Display the "Manage display" screen and check that the expected formatter is
|
||||
// selected.
|
||||
$this->drupalGet($manage_display);
|
||||
$this->assertFieldByName('fields[field_test][type]', $format, 'The expected formatter is selected.');
|
||||
$this->assertText("$setting_name: $setting_value", 'The expected summary is displayed.');
|
||||
|
||||
// Change the formatter and check that the summary is updated.
|
||||
$edit = array('fields[field_test][type]' => 'field_test_multiple', 'refresh_rows' => 'field_test');
|
||||
$this->drupalPostAJAX(NULL, $edit, array('op' => t('Refresh')));
|
||||
$format = 'field_test_multiple';
|
||||
$default_settings = field_info_formatter_settings($format);
|
||||
$setting_name = key($default_settings);
|
||||
$setting_value = $default_settings[$setting_name];
|
||||
$this->assertFieldByName('fields[field_test][type]', $format, 'The expected formatter is selected.');
|
||||
$this->assertText("$setting_name: $setting_value", 'The expected summary is displayed.');
|
||||
|
||||
// Submit the form and check that the instance is updated.
|
||||
$this->drupalPost(NULL, array(), t('Save'));
|
||||
field_info_cache_clear();
|
||||
$instance = field_info_instance('node', 'field_test', $this->type);
|
||||
$current_format = $instance['display']['default']['type'];
|
||||
$current_setting_value = $instance['display']['default']['settings'][$setting_name];
|
||||
$this->assertEqual($current_format, $format, 'The formatter was updated.');
|
||||
$this->assertEqual($current_setting_value, $setting_value, 'The setting was updated.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests switching view modes to use custom or 'default' settings'.
|
||||
*/
|
||||
function testViewModeCustom() {
|
||||
// Create a field, and a node with some data for the field.
|
||||
$edit = array(
|
||||
'fields[_add_new_field][label]' => 'Test field',
|
||||
'fields[_add_new_field][field_name]' => 'test',
|
||||
);
|
||||
$this->fieldUIAddNewField('admin/structure/types/manage/' . $this->hyphen_type, $edit);
|
||||
// For this test, use a formatter setting value that is an integer unlikely
|
||||
// to appear in a rendered node other than as part of the field being tested
|
||||
// (for example, unlikely to be part of the "Submitted by ... on ..." line).
|
||||
$value = 12345;
|
||||
$settings = array(
|
||||
'type' => $this->type,
|
||||
'field_test' => array(LANGUAGE_NONE => array(array('value' => $value))),
|
||||
);
|
||||
$node = $this->drupalCreateNode($settings);
|
||||
|
||||
// Gather expected output values with the various formatters.
|
||||
$formatters = field_info_formatter_types();
|
||||
$output = array(
|
||||
'field_test_default' => $formatters['field_test_default']['settings']['test_formatter_setting'] . '|' . $value,
|
||||
'field_test_with_prepare_view' => $formatters['field_test_with_prepare_view']['settings']['test_formatter_setting_additional'] . '|' . $value. '|' . ($value + 1),
|
||||
);
|
||||
|
||||
// Check that the field is displayed with the default formatter in 'rss'
|
||||
// mode (uses 'default'), and hidden in 'teaser' mode (uses custom settings).
|
||||
$this->assertNodeViewText($node, 'rss', $output['field_test_default'], "The field is displayed as expected in view modes that use 'default' settings.");
|
||||
$this->assertNodeViewNoText($node, 'teaser', $value, "The field is hidden in view modes that use custom settings.");
|
||||
|
||||
// Change fomatter for 'default' mode, check that the field is displayed
|
||||
// accordingly in 'rss' mode.
|
||||
$edit = array(
|
||||
'fields[field_test][type]' => 'field_test_with_prepare_view',
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type . '/display', $edit, t('Save'));
|
||||
$this->assertNodeViewText($node, 'rss', $output['field_test_with_prepare_view'], "The field is displayed as expected in view modes that use 'default' settings.");
|
||||
|
||||
// Specialize the 'rss' mode, check that the field is displayed the same.
|
||||
$edit = array(
|
||||
"view_modes_custom[rss]" => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type . '/display', $edit, t('Save'));
|
||||
$this->assertNodeViewText($node, 'rss', $output['field_test_with_prepare_view'], "The field is displayed as expected in newly specialized 'rss' mode.");
|
||||
|
||||
// Set the field to 'hidden' in the view mode, check that the field is
|
||||
// hidden.
|
||||
$edit = array(
|
||||
'fields[field_test][type]' => 'hidden',
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type . '/display/rss', $edit, t('Save'));
|
||||
$this->assertNodeViewNoText($node, 'rss', $value, "The field is hidden in 'rss' mode.");
|
||||
|
||||
// Set the view mode back to 'default', check that the field is displayed
|
||||
// accordingly.
|
||||
$edit = array(
|
||||
"view_modes_custom[rss]" => FALSE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type . '/display', $edit, t('Save'));
|
||||
$this->assertNodeViewText($node, 'rss', $output['field_test_with_prepare_view'], "The field is displayed as expected when 'rss' mode is set back to 'default' settings.");
|
||||
|
||||
// Specialize the view mode again.
|
||||
$edit = array(
|
||||
"view_modes_custom[rss]" => TRUE,
|
||||
);
|
||||
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type . '/display', $edit, t('Save'));
|
||||
// Check that the previous settings for the view mode have been kept.
|
||||
$this->assertNodeViewNoText($node, 'rss', $value, "The previous settings are kept when 'rss' mode is specialized again.");
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that a string is found in the rendered node in a view mode.
|
||||
*
|
||||
* @param $node
|
||||
* The node.
|
||||
* @param $view_mode
|
||||
* The view mode in which the node should be displayed.
|
||||
* @param $text
|
||||
* Plain text to look for.
|
||||
* @param $message
|
||||
* Message to display.
|
||||
*
|
||||
* @return
|
||||
* TRUE on pass, FALSE on fail.
|
||||
*/
|
||||
function assertNodeViewText($node, $view_mode, $text, $message) {
|
||||
return $this->assertNodeViewTextHelper($node, $view_mode, $text, $message, FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that a string is not found in the rendered node in a view mode.
|
||||
*
|
||||
* @param $node
|
||||
* The node.
|
||||
* @param $view_mode
|
||||
* The view mode in which the node should be displayed.
|
||||
* @param $text
|
||||
* Plain text to look for.
|
||||
* @param $message
|
||||
* Message to display.
|
||||
* @return
|
||||
* TRUE on pass, FALSE on fail.
|
||||
*/
|
||||
function assertNodeViewNoText($node, $view_mode, $text, $message) {
|
||||
return $this->assertNodeViewTextHelper($node, $view_mode, $text, $message, TRUE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that a string is (not) found in the rendered nodein a view mode.
|
||||
*
|
||||
* This helper function is used by assertNodeViewText() and
|
||||
* assertNodeViewNoText().
|
||||
*
|
||||
* @param $node
|
||||
* The node.
|
||||
* @param $view_mode
|
||||
* The view mode in which the node should be displayed.
|
||||
* @param $text
|
||||
* Plain text to look for.
|
||||
* @param $message
|
||||
* Message to display.
|
||||
* @param $not_exists
|
||||
* TRUE if this text should not exist, FALSE if it should.
|
||||
*
|
||||
* @return
|
||||
* TRUE on pass, FALSE on fail.
|
||||
*/
|
||||
function assertNodeViewTextHelper($node, $view_mode, $text, $message, $not_exists) {
|
||||
// Make sure caches on the tester side are refreshed after changes
|
||||
// submitted on the tested side.
|
||||
field_info_cache_clear();
|
||||
|
||||
// Save current content so that we can restore it when we're done.
|
||||
$old_content = $this->drupalGetContent();
|
||||
|
||||
// Render a cloned node, so that we do not alter the original.
|
||||
$clone = clone $node;
|
||||
$element = node_view($clone, $view_mode);
|
||||
$output = drupal_render($element);
|
||||
$this->verbose(t('Rendered node - view mode: @view_mode', array('@view_mode' => $view_mode)) . '<hr />'. $output);
|
||||
|
||||
// Assign content so that DrupalWebTestCase functions can be used.
|
||||
$this->drupalSetContent($output);
|
||||
$method = ($not_exists ? 'assertNoText' : 'assertText');
|
||||
$return = $this->{$method}((string) $text, $message);
|
||||
|
||||
// Restore previous content.
|
||||
$this->drupalSetContent($old_content);
|
||||
|
||||
return $return;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests custom widget hooks and callbacks on the field administration pages.
|
||||
*/
|
||||
class FieldUIAlterTestCase extends DrupalWebTestCase {
|
||||
public static function getInfo() {
|
||||
return array(
|
||||
'name' => 'Widget customization',
|
||||
'description' => 'Test custom field widget hooks and callbacks on field administration pages.',
|
||||
'group' => 'Field UI',
|
||||
);
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
parent::setUp(array('field_test'));
|
||||
|
||||
// Create test user.
|
||||
$admin_user = $this->drupalCreateUser(array('access content', 'administer content types', 'administer users', 'administer fields'));
|
||||
$this->drupalLogin($admin_user);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests hook_field_widget_properties_alter() on the default field widget.
|
||||
*
|
||||
* @see field_test_field_widget_properties_alter()
|
||||
* @see field_test_field_widget_properties_user_alter()
|
||||
* @see field_test_field_widget_form_alter()
|
||||
*/
|
||||
function testDefaultWidgetPropertiesAlter() {
|
||||
// Create the alter_test_text field and an instance on article nodes.
|
||||
field_create_field(array(
|
||||
'field_name' => 'alter_test_text',
|
||||
'type' => 'text',
|
||||
));
|
||||
field_create_instance(array(
|
||||
'field_name' => 'alter_test_text',
|
||||
'entity_type' => 'node',
|
||||
'bundle' => 'article',
|
||||
'widget' => array(
|
||||
'type' => 'text_textfield',
|
||||
'size' => 60,
|
||||
),
|
||||
));
|
||||
|
||||
// Test that field_test_field_widget_properties_alter() sets the size to
|
||||
// 42 and that field_test_field_widget_form_alter() reports the correct
|
||||
// size when the form is displayed.
|
||||
$this->drupalGet('admin/structure/types/manage/article/fields/alter_test_text');
|
||||
$this->assertText('Field size: 42', 'Altered field size is found in hook_field_widget_form_alter().');
|
||||
|
||||
// Create the alter_test_options field.
|
||||
field_create_field(array(
|
||||
'field_name' => 'alter_test_options',
|
||||
'type' => 'list_text'
|
||||
));
|
||||
// Create instances on users and page nodes.
|
||||
field_create_instance(array(
|
||||
'field_name' => 'alter_test_options',
|
||||
'entity_type' => 'user',
|
||||
'bundle' => 'user',
|
||||
'widget' => array(
|
||||
'type' => 'options_select',
|
||||
)
|
||||
));
|
||||
field_create_instance(array(
|
||||
'field_name' => 'alter_test_options',
|
||||
'entity_type' => 'node',
|
||||
'bundle' => 'page',
|
||||
'widget' => array(
|
||||
'type' => 'options_select',
|
||||
)
|
||||
));
|
||||
|
||||
// Test that field_test_field_widget_properties_user_alter() replaces
|
||||
// the widget and that field_test_field_widget_form_alter() reports the
|
||||
// correct widget name when the form is displayed.
|
||||
$this->drupalGet('admin/config/people/accounts/fields/alter_test_options');
|
||||
$this->assertText('Widget type: options_buttons', 'Widget type is altered for users in hook_field_widget_form_alter().');
|
||||
|
||||
// Test that the widget is not altered on page nodes.
|
||||
$this->drupalGet('admin/structure/types/manage/page/fields/alter_test_options');
|
||||
$this->assertText('Widget type: options_select', 'Widget type is not altered for pages in hook_field_widget_form_alter().');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue