field_validation_numeric2_validator.inc in Field Validation 7.2
File
plugins/validator/field_validation_numeric2_validator.inc
View source
<?php
$plugin = array(
'label' => t('Numeric values'),
'description' => t('Verifies that user-entered values are numeric, with the option to specify min and / or max values.'),
'handler' => array(
'class' => 'field_validation_numeric2_validator',
),
);
class field_validation_numeric2_validator extends field_validation_validator {
public function validate() {
$settings = $this->rule->settings;
if ($this->value !== '' && !is_null($this->value)) {
$flag = TRUE;
if (!is_numeric($this->value)) {
$flag = FALSE;
}
else {
if (isset($settings['min']) && $settings['min'] != '') {
$min = token_replace($settings['min'], array(
$this
->get_token_type() => $this->entity,
));
if ($this->value < $min) {
$flag = FALSE;
}
}
if (isset($settings['max']) && $settings['max'] != '') {
$max = token_replace($settings['max'], array(
$this
->get_token_type() => $this->entity,
));
if ($this->value > $max) {
$flag = FALSE;
}
}
}
if (!$flag) {
$token = array(
'[min]' => isset($min) ? $min : '',
'[max]' => isset($max) ? $max : '',
);
$this
->set_error($token);
}
}
}
function settings_form(&$form, &$form_state) {
$default_settings = $this
->get_default_settings($form, $form_state);
$form['settings']['min'] = array(
'#title' => t('Minimum value'),
'#description' => t("Optionally specify the minimum value to validate the user-entered numeric value against."),
'#type' => 'textfield',
'#default_value' => isset($default_settings['min']) ? $default_settings['min'] : '',
);
$form['settings']['max'] = array(
'#title' => t('Maximum value'),
'#description' => t("Optionally specify the maximum value to validate the user-entered numeric value against."),
'#type' => 'textfield',
'#default_value' => isset($default_settings['max']) ? $default_settings['max'] : '',
);
parent::settings_form($form, $form_state);
}
public function token_help() {
$token_help = parent::token_help();
$token_help += array(
'[min]' => t('Minimum value'),
'[max]' => t('Maximum value'),
);
return $token_help;
}
}