function crumbs_RuleWeightKeeper::prefixedWeightKeeper in Crumbs, the Breadcrumbs suite 6.2
Same name and namespace in other branches
- 7 lib/RuleWeightKeeper.php \crumbs_RuleWeightKeeper::prefixedWeightKeeper()
File
- ./
crumbs.plugin_engine.inc, line 246
Class
Code
function prefixedWeightKeeper($prefix) {
if (!isset($this->_prefixedKeepers[$prefix])) {
$this->_prefixedKeepers[$prefix] = $this
->_buildPrefixedWeightKeeper($prefix);
}
return $this->_prefixedKeepers[$prefix];
}