You are here

function flag_user::options in Flag 6.2

Same name and namespace in other branches
  1. 7.3 includes/flag/flag_user.inc \flag_user::options()
  2. 7.2 flag.inc \flag_user::options()

File

./flag.inc, line 1615
Implements various flags. Uses object oriented style inspired by that of Views 2.

Class

flag_user
Implements a user flag.

Code

function options() {
  $options = parent::options();
  $options += array(
    'show_on_profile' => TRUE,
    'access_uid' => '',
  );
  return $options;
}