function ctools_context_optional::ctools_context_optional in Chaos Tool Suite (ctools) 6
File
- includes/
context.inc, line 184 - Contains code related to the ctools system of 'context'.
Class
- ctools_context_optional
- Used to compare to see if a list of contexts match an optional context. This can produce empty contexts to use as placeholders.
Code
function ctools_context_optional() {
$args = func_get_args();
call_user_func_array(array(
$this,
'ctools_context_required',
), $args);
}