'select', '#title' => t('CSS options'), '#default_value' => variable_get('diff_theme', 'default'), '#options' => array( 'default' => t('Classic'), 'boxes' => t('Boxes'), ), '#empty_option' => t('- None -'), '#description' => t('Alter the CSS used when displaying diff results.'), ); $form['diff_default_state_node'] = array( '#type' => 'select', '#title' => t('Diff default state'), '#default_value' => variable_get('diff_default_state_node', 'raw'), '#options' => array( 'raw' => t('HTML view'), 'raw_plain' => t('Plain view'), ), '#empty_option' => t('- None -'), '#description' => t('Default display to show when viewing a diff, html tags in diffed result or as plain text.'), ); $form['diff_radio_behavior'] = array( '#type' => 'select', '#title' => t('Diff radio behavior'), '#default_value' => variable_get('diff_radio_behavior', 'simple'), '#options' => array( 'simple' => t('Simple exclusion'), 'linear' => t('Linear restrictions'), ), '#empty_option' => t('- None -'), '#description' => t('Simple exclusion means that users will not be able to select the same revision, Linear restrictions means that users can only select older or newer revisions of the current selections.'), ); $options = drupal_map_assoc(array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)); $form['diff_context_lines_leading'] = array( '#type' => 'select', '#title' => t('Leading context lines'), '#description' => t('This governs the number of unchanged leading context "lines" to preserve.'), '#default_value' => variable_get('diff_context_lines_leading', 2), '#options' => $options, ); $form['diff_context_lines_trailing'] = array( '#type' => 'select', '#title' => t('Trailing context lines'), '#description' => t('This governs the number of unchanged trailing context "lines" to preserve.'), '#default_value' => variable_get('diff_context_lines_trailing', 2), '#options' => $options, ); return system_settings_form($form); } /** * Global entity settings. */ function diff_admin_global_entity_settings($form, $form_state, $entity_type) { $entity_info = entity_get_info($entity_type); drupal_set_title(t('Diff settings for %entity_label entities', array('%entity_label' => $entity_info['label'])), PASS_THROUGH); $form['diff_show_header_' . $entity_type] = array( '#type' => 'checkbox', '#title' => t('Show entity label header'), '#default_value' => variable_get('diff_show_header_' . $entity_type, 1), ); $form['diff_admin_path_' . $entity_type] = array( '#type' => 'checkbox', '#title' => t('Treat diff pages as administrative'), '#description' => t('Diff pages are treated as administrative pages by default, although it is up to each module to enforce this and to implement this optional setting.'), '#default_value' => variable_get('diff_admin_path_' . $entity_type, 1), ); return system_settings_form($form); } /** * Menu callback - provides an overview of Diff support and global settings. */ function diff_admin_field_overview() { $build['info'] = array( '#markup' => '

' . t('This table provides a summary of the field type support found on the system. It is recommended that you use global settings whenever possible to configure field comparison settings.') . '

', ); $header = array(t('Type'), t('Module'), t('Operations')); $rows = array(); // Skip field types which have no widget types. $field_types = field_info_field_types(); $widgets = array(); foreach (field_info_widget_types() as $name => $widget_type) { foreach ($widget_type['field types'] as $widget_field_type) { if (isset($field_types[$widget_field_type])) { $widgets[$widget_field_type][$name] = $widget_type['label']; } } } foreach ($field_types as $field_name => $field_type) { if (!empty($widgets[$field_name])) { $row = array(); $row[] = t('@field_label (%field_type)', array( '@field_label' => $field_type['label'], '%field_type' => $field_name, )); $row[] = $field_type['module']; $row[] = l(t('Global settings'), 'admin/config/content/diff/fields/' . $field_name); $rows[] = $row; } } $build['category_table'] = array( '#theme' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('The system has no configurable fields.'), ); return $build; } /** * Menu form callback for the field settings. */ function diff_admin_global_field_settings($form, $form_state, $type) { module_load_include('diff.inc', 'diff'); $field_types = field_info_field_types(); if (!isset($field_types[$type])) { drupal_set_message(t('Invalid field type.'), 'error'); drupal_goto('admin/config/content/diff/fields'); } $field_type = $field_types[$type]; // Set the title to give more context to this page. drupal_set_title(t('Global settings for %label fields', array( '%label' => $field_type['label'], )), PASS_THROUGH); $variable_name = "diff_{$field_type['module']}_field_{$type}_default_options"; $settings = variable_get($variable_name, array()); $settings = _diff_field_default_settings($field_type['module'], $type, $settings); $func = $field_type['module'] . '_field_diff_options_form'; if (function_exists($func) && ($options_form = $func($type, $settings))) { $form[$variable_name] = $options_form; } $form[$variable_name]['#tree'] = TRUE; diff_global_settings_form($form[$variable_name], $form_state, $type, $settings); return system_settings_form($form); }