You are here

function epsacrop_form_alter in EPSA Crop - Image Cropping 6.2

Same name and namespace in other branches
  1. 6 epsacrop.module \epsacrop_form_alter()

File

./epsacrop.module, line 163
The main file of module

Code

function epsacrop_form_alter(&$form, $form_state, $form_id) {
  if (eregi('_node_form', $form_id)) {
    $node = $form['#node'];
    $form['epsacropcoords'] = array(
      '#type' => 'textarea',
      '#default_value' => !empty($node->epsacropcoords) ? $node->epsacropcoords : '',
      '#prefix' => '<div id="edit-epsacropcoords-wrapper">',
      '#suffix' => '</div>',
    );
  }
}