You are here

function _maxlength_node_type_get_labels in Maxlength 7

Same name and namespace in other branches
  1. 7.2 maxlength.module \_maxlength_node_type_get_labels()
2 calls to _maxlength_node_type_get_labels()
maxlength_node_type_delete in ./maxlength.module
Implements hook_node_type_update().
maxlength_node_type_update in ./maxlength.module
Implements hook_node_type_update().

File

./maxlength.module, line 118
Enables a max length countdown on node body, title and CCK textfields.

Code

function _maxlength_node_type_get_labels() {
  $labels = array(
    'title',
    'js_title',
    'text_title',
    'body',
    'js_body',
    'text_body',
  );
  return $labels;
}