function context_exists in Context 5
Same name and namespace in other branches
- 6.3 context.module \context_exists()
- 6 context.module \context_exists()
- 6.2 context.module \context_exists()
- 7.3 context.module \context_exists()
Deprecated context_exists() function. Retained for backwards compatibility -- please use context_isset() instead.
File
- ./
context.module, line 110
Code
function context_exists($namespace = null, $attribute = null) {
return context_context(CONTEXT_ISSET, $namespace, $attribute, null);
}