You are here

function maxlength_elements in Maxlength 5

Same name and namespace in other branches
  1. 6 maxlength.module \maxlength_elements()

File

./maxlength.module, line 84

Code

function maxlength_elements() {
  $type = array();
  if (_maxlength_limit_body()) {
    $type['textarea'] = array(
      '#theme' => 'maxlength_textarea',
    );
  }
  return $type;
}