You are here

option_nfs_submission_body_rows.inc in Node and Comments Form Settings 6.2

Same filename and directory in other branches
  1. 6.3 includes/option_nfs_submission_body_rows.inc

File

includes/option_nfs_submission_body_rows.inc
View source
<?php

/**
 * Change the default height of the body field
 */
function _option_nfs_submission_body_rows(&$form, &$form_state, $settings, $node) {
  if ($settings['nfs_submission_body_rows'] == 1 && $form['body_field']['body']) {
    $form['body_field']['body']['#type'] = 'textfield';
  }
  elseif (isset($settings['nfs_submission_body_rows']) && $form['body_field']['body']) {
    $form['body_field']['body']['#rows'] = $settings['nfs_submission_body_rows'];
  }
  return $form;
}

Functions

Namesort descending Description
_option_nfs_submission_body_rows Change the default height of the body field