You are here

function context_isset in Context 6.2

Same name and namespace in other branches
  1. 5 context.module \context_isset()
  2. 6.3 context.module \context_isset()
  3. 6 context.module \context_isset()
  4. 7.3 context.module \context_isset()

Returns a boolean for whether a context namespace + attribute have been set.

1 call to context_isset()
context_set_by_condition in ./context.module
Sets a namespace-attribute-value context that has been associated with the provided condition.

File

./context.module, line 113

Code

function context_isset($namespace = NULL, $attribute = NULL) {
  return context_context(CONTEXT_ISSET, $namespace, $attribute, NULL);
}