You are here

function space_type::access_user in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 plugins/space_type.inc \space_type::access_user()
  2. 7 plugins/space_type.inc \space_type::access_user()

Grant a user access to the given account in this space.

Parameters

$op: May be 'view' or 'edit'.

Return value

TRUE if access should be granted. FALSE if not.

1 call to space_type::access_user()
space_og::access_user in spaces_og/plugins/space_og.inc
Override of access_user().
1 method overrides space_type::access_user()
space_og::access_user in spaces_og/plugins/space_og.inc
Override of access_user().

File

plugins/space_type.inc, line 114

Class

space_type
Common functionality for space types that implement access, routing, delegated Views filtering and feature management concepts. Examples: spaces_og, spaces_user, spaces_taxonomy.

Code

function access_user($op = 'view', $account = NULL) {
  return TRUE;
}