You are here

function flag_flag::type_access_multiple in Flag 7.2

Same name and namespace in other branches
  1. 6.2 flag.inc \flag_flag::type_access_multiple()
  2. 7.3 includes/flag/flag_flag.inc \flag_flag::type_access_multiple()

Implements access_multiple() implemented by each child class.

@abstract

Return value

An array keyed by entity ids, whose values represent the access to the corresponding entity. The access value may be FALSE if access should be denied, or NULL (or not set) if there is no restriction to be made. It should NOT be TRUE.

1 call to flag_flag::type_access_multiple()
flag_flag::access_multiple in ./flag.inc
Determine access to multiple objects.

File

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

Class

flag_flag
This abstract class represents a flag, or, in Views 2 terminology, "a handler".

Code

function type_access_multiple($content_ids, $account) {
  return array();
}