function views_content_term_from_view_settings_form_validate

1 string reference to 'views_content_term_from_view_settings_form_validate'
term_from_view.inc in views_content/plugins/relationships/term_from_view.inc
Plugin to provide an relationship handler for term from view.

File

views_content/plugins/relationships/term_from_view.inc, line 60

Code

function views_content_term_from_view_settings_form_validate($form, &$form_state) {
    if (intval($form_state['values']['row']) <= 0) {
        form_error($form['row'], t('Row number must be a positive integer value.'));
    }
}