function ctools_context_add_required_context_form
1 call to ctools_context_add_required_context_form()
- ctools_access_ruleset_ui::edit_form_context in ctools_access_ruleset/
plugins/ export_ui/ ctools_access_ruleset_ui.class.php
File
-
includes/
context-admin.inc, line 150
Code
function ctools_context_add_required_context_form($module, &$form, &$form_state, &$form_location, $object, $cache_key = NULL) {
if (empty($cache_key)) {
$cache_key = $object->name;
}
$form_location = array(
'#prefix' => '<div id="ctools-requiredcontexts-table">',
'#suffix' => '</div>',
'#theme' => 'ctools_context_item_form',
'#cache_key' => $cache_key,
'#ctools_context_type' => 'requiredcontext',
'#ctools_context_module' => $module,
);
// Store the order the choices are in so javascript can manipulate it.
$form_location['markup'] = array(
'#value' => ' ',
);
$choices = array();
foreach (ctools_get_contexts() as $name => $arg) {
if (empty($arg['no required context ui'])) {
$choices[$name] = $arg['title'];
}
}
asort($choices);
if (!empty($choices) || !empty($object->contexts)) {
ctools_context_add_item_table('requiredcontext', $form_location, $choices, $object->requiredcontexts);
}
}