<?php
/**
 * Componenta Com
 */
class Com extends Nette\Application\UI\Control
{
    public function render()
    {
        $this->template->setFile(__DIR__ . '/Com.latte');
        $this->template->time = date(DATE_RFC822);
        $this->template->render();
    }

    public function handleRefresh()
    {
        if( $this->parent->isAjax() ) {
            $this->invalidateControl('com');
        } else {
            // redirect může jen presenter, nikoliv komponenta
            $this->parent->redirect('this');
        }
    }
}