You are here

function epsacrop_settings in EPSA Crop - Image Cropping 6.2

Same name and namespace in other branches
  1. 6 epsacrop.module \epsacrop_settings()
1 string reference to 'epsacrop_settings'
epsacrop_menu in ./epsacrop.module
Implementation of hook_menu

File

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

Code

function epsacrop_settings(&$form_state) {
  $form = array();
  $form['epsacrop_box_size'] = array(
    '#type' => 'textfield',
    '#title' => t("Box Size"),
    '#default_value' => variable_get('epsacrop_box_size', '512x384'),
    '#description' => t("Size for admin thumbnail"),
  );
  return system_settings_form($form);
}