Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
9 / 9
ctools_context_plugin_type
100.00% covered (success)
100.00%
1 / 1
0
100.00% covered (success)
100.00%
9 / 9
<?php
/**
 * @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.
 */
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,
  );
}