function views_content_user_from_view_settings_form in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 views_content/plugins/relationships/user_from_view.inc \views_content_user_from_view_settings_form()
Settings form for the relationship.
1 string reference to 'views_content_user_from_view_settings_form'
- 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 49 - Plugin to provide an relationship handler for user from term.
Code
function views_content_user_from_view_settings_form($form, &$form_state) {
$conf = $form_state['conf'];
$form['row'] = array(
'#title' => t('Row number'),
'#type' => 'textfield',
'#default_value' => $conf['row'],
);
return $form;
}