You are here

function crumbs_ParentFinder::getLoggedCandidates in Crumbs, the Breadcrumbs suite 6.2

Same name and namespace in other branches
  1. 7 lib/ParentFinder.php \crumbs_ParentFinder::getLoggedCandidates()

File

./crumbs.trail.inc, line 148

Class

crumbs_ParentFinder
Can find a parent path for a given path. Contains a cache.

Code

function getLoggedCandidates($path) {
  if (is_array($this->_log[$path])) {
    return $this->_log[$path];
  }
  else {
    return array();
  }
}