You are here

function fc_progress_content_type_options in Field Complete 7

Returns an edit form for custom type settings.

1 string reference to 'fc_progress_content_type_options'
fc_progress_content_type_content_types in fc_progress/plugins/content_types/fc_progress.inc
Return all fc progress content types available

File

fc_progress/plugins/content_types/fc_progress.inc, line 97
Plugin to handle field completeness.

Code

function fc_progress_content_type_options($form, &$form_state) {
  $form['show_next'] = array(
    '#title' => t('Show Next Element Message'),
    '#description' => t('Show a message like "Completing field name will raise completeness to 90%"'),
    '#type' => 'checkbox',
    '#default_value' => !empty($form_state['conf']['show_next']),
  );
  return $form;
}