You are here

function iss_form_image_style_form_alter in Image Style Selector 7.2

Implements

File

./iss.module, line 71

Code

function iss_form_image_style_form_alter(&$form, &$form_state, $form_id) {
  $form['iss_enabled'] = array(
    '#type' => 'checkbox',
    '#title' => t('ISS enabled'),
    '#description' => t('When this option is chosen, this style effects will be ignored and it will be changed into another styles.'),
    '#default_value' => !empty($form_state['image_style']['iss_enabled']),
    '#element_validate' => array(
      'iss_image_style_iss_enabled_validate',
    ),
  );
}