function ctools_context_plugin_type

@file Contains plugin type registration information for the context tool.

Don't actually need to declare anything for these plugin types right now, apart from the fact that they exist. So, an empty array.

File

includes/context.plugin-type.inc, line 11

Code

function ctools_context_plugin_type(&$items) {
    $items['contexts'] = array(
        'child plugins' => TRUE,
    );
    $items['arguments'] = array(
        'child plugins' => TRUE,
    );
    $items['relationships'] = array(
        'child plugins' => TRUE,
    );
    $items['access'] = array(
        'child plugins' => TRUE,
    );
}