context.plugin-type.inc
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
View source
<?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,
);
}
Functions
Title | Deprecated | Summary |
---|---|---|
ctools_context_plugin_type | @file Contains plugin type registration information for the context tool. |