function crumbs_PluginOperation_describe::collectedInfo in Crumbs, the Breadcrumbs suite 7.2
Return value
crumbs_Container_MultiWildcardData
File
- lib/
PluginOperation/ describe.php, line 168
Class
- crumbs_PluginOperation_describe
- This class uses the PluginOperation pattern, but it does not implement any of the PluginOperation interfaces. This is because it is not supposed to be used with the PluginEngine, but rather from a custom function (see above).
Code
function collectedInfo() {
$container = new crumbs_Container_MultiWildcardData($this->keys);
$container
->__set('key', $this->keys);
$container->descriptions = $this->descriptions;
return $container;
}