function ctools_context_add_context_form

2 calls to ctools_context_add_context_form()
ctools_access_ruleset_ui::edit_form_context in ctools_access_ruleset/plugins/export_ui/ctools_access_ruleset_ui.class.php
ctools_context_handler_edit_context in includes/context-task-handler.inc
Edit contexts that go with this panel.

File

includes/context-admin.inc, line 116

Code

function ctools_context_add_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-contexts-table">',
        '#suffix' => '</div>',
        '#theme' => 'ctools_context_item_form',
        '#cache_key' => $cache_key,
        '#ctools_context_type' => 'context',
        '#ctools_context_module' => $module,
    );
    // Store the order the choices are in so javascript can manipulate it.
    $form_location['markup'] = array(
        '#markup' => '&nbsp;',
    );
    $choices = array();
    foreach (ctools_get_contexts() as $name => $arg) {
        if (empty($arg['no ui'])) {
            $choices[$name] = $arg['title'];
        }
    }
    asort($choices);
    if (!empty($choices) || !empty($object->contexts)) {
        ctools_context_add_item_table('context', $form_location, $choices, $object->contexts);
    }
}