You are here

function views_content_user_from_view_settings_form_validate in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 views_content/plugins/relationships/user_from_view.inc \views_content_user_from_view_settings_form_validate()
1 string reference to 'views_content_user_from_view_settings_form_validate'
user_from_view.inc in views_content/plugins/relationships/user_from_view.inc
Plugin to provide an relationship handler for user from term.

File

views_content/plugins/relationships/user_from_view.inc, line 60
Plugin to provide an relationship handler for user from term.

Code

function views_content_user_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.'));
  }
}