HosipLan

Untitled

Aug 3rd, 2011
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. protected function attached($obj)
  2. {
  3.     // vždy volej rodiče
  4.     parent::attached($obj);
  5.  
  6.     if (!$obj instanceof Nette\Application\Presenter) {
  7.         return; // pokud to není presenter, tak nepokračovat
  8.     }
  9.  
  10.     // zde máš přístupný presenter
  11.     $this->presenter->link("Categories:", array('id' => $category->id, 'category' => $category->url))
  12. }
Advertisement
Add Comment
Please, Sign In to add comment