function context_isset in Context 7.3
Same name and namespace in other branches
- 5 context.module \context_isset()
- 6.3 context.module \context_isset()
- 6 context.module \context_isset()
- 6.2 context.module \context_isset()
Returns a boolean for whether a context namespace + attribute have been set.
5 calls to context_isset()
- context_block_view_alter in ./context.module 
- hook_block_view_alter - if the context editor block is on this page, ensure that all blocks have some content so that empty blocks are not dropped
- context_condition_met in ./context.module 
- Queue or activate contexts that have met the specified condition.
- context_reaction_block::editable_region in plugins/context_reaction_block.inc 
- Add markup for making a region editable.
- context_ui_menu_contextual_links_alter in context_ui/context_ui.module 
- Implementation of hook_menu_contextual_links_alter().
- context_ui_page_alter in context_ui/context_ui.module 
- Implementation of hook_page_alter().
File
- ./context.module, line 109 
Code
function context_isset($namespace = NULL, $attribute = NULL) {
  return context_context(CONTEXT_ISSET, $namespace, $attribute, NULL);
}