function flag_user::options_form in Flag 5
Same name and namespace in other branches
- 6.2 flag.inc \flag_user::options_form()
- 6 flag.inc \flag_user::options_form()
- 7.3 includes/flag/flag_user.inc \flag_user::options_form()
- 7.2 flag.inc \flag_user::options_form()
File
- ./
flag.inc, line 1103 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Class
- flag_user
- Implements a user flag.
Code
function options_form(&$form) {
parent::options_form($form);
$form['types'] = array(
// A user flag doesn't support node types. (Maybe will support roles instead, in the future.)
'#type' => 'value',
'#value' => array(
0 => 0,
),
);
$form['display']['show_on_profile'] = array(
'#type' => 'checkbox',
'#title' => t('Display link on user profile page'),
'#default_value' => $this->show_on_profile,
'#access' => empty($this->locked['show_on_profile']),
);
}