summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/includes/context.plugin-type.inc
blob: 866def2e0c7d360831124f7845a7ba91ef5e1c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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,
  );
}