'Uzly skupiny', 'Table' => 'ClusterNode', 'DefaultOrderColumn' => 'NetworkAddress', 'DefaultOrderDirection' => 1, 'Items' => array( 'NetworkAddress' => array('Type' => 'String', 'Caption' => 'Síťová adresa', 'Default' => ''), ), ); function ShowListOnRow($Row) { //$Row['Version'] = ''.$Row['Version'].''; return($Row); } function ItemList() { $Output = '

Uzly ve skupině

'; $Table = new Table($this->ItemListFormClass, $this->System); $Table->OnRow = array($this, 'ShowListOnRow'); $Table->LoadValuesFromDatabase($this->Database); $Output .= $Table->Show(); if($this->System->Modules['Permission']->Check('Cluster', 'Show')) { $Output .= '
'; $Output .= ' Přidat'; $Output .= '
'; } return($Output); } }