Exemplo n.º 1
0
 protected function addAccountCrumb($crumbs, PhortuneAccount $account, $link = true)
 {
     $name = $account->getName();
     $href = null;
     if ($link) {
         $href = $this->getApplicationURI($account->getID() . '/');
         $crumbs->addTextCrumb($name, $href);
     } else {
         $crumbs->addTextCrumb($name);
     }
 }