public function linkforItem(KurogoObject $person, $options = null)
 {
     $title = $person->getName() ? $this->htmlEncodeString($person->getName()) : $this->getLocalizedString('NO_HEADER_TITLE');
     return array('title' => $title, 'url' => $this->buildBreadcrumbURL('detail', array('id' => $person->getId(), 'filter' => self::argVal($options, 'filter'), 'feed' => $this->feed)));
 }
Ejemplo n.º 2
0
 public function linkforItem(KurogoObject $person, $options = null)
 {
     return array('title' => $this->htmlEncodeString($person->getName()), 'url' => $this->buildBreadcrumbURL('detail', array('uid' => $person->getId(), 'filter' => $this->getArg('filter'))));
 }