| 6 context.module | context_set($namespace, $attribute = NULL, $value = NULL) |
| 7 context.module | context_set($namespace, $attribute = NULL, $value = NULL) |
Sets a context by namespace + attribute.
<?php
function context_set($namespace, $attribute = NULL, $value = NULL) {
return context_context(CONTEXT_SET, $namespace, $attribute, $value);
}
?>