You are here

function flag_user::_load_content in Flag 6

Same name and namespace in other branches
  1. 5 flag.inc \flag_user::_load_content()
  2. 6.2 flag.inc \flag_user::_load_content()

File

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

Class

flag_user
Implements a user flag.

Code

function _load_content($content_id) {
  return user_load(array(
    'uid' => $content_id,
  ));
}