Listing 24.3. Metoda akcji index/index
public function indexAction()
{
    $Plik = new Application_Model_DbTable_Plik();
    $select = $Plik->select()->from('plik', array('slug'));
    $this->view->pliki = $Plik->fetchAll($select);
}