You are here

function sort_comments_form_node_type_form_alter in Sort Comments 7

File

./sort_comments.module, line 6

Code

function sort_comments_form_node_type_form_alter(&$form, $form_state) {
  $form['comment']['comment_default_sorting'] = array(
    '#title' => t('Sort'),
    '#type' => 'select',
    '#options' => array(
      1 => t('Older first'),
      2 => t('Newer first'),
    ),
    '#default_value' => variable_get('comment_default_sorting_' . $form['#node_type']->type, SORT_COMMENTS_OLDER_FIRST),
  );
}