protected function getPageList($item)
 {
     $this->actions();
     // strony
     $this->controller_name = 'adresy';
     $this->using_pages = true;
     $this->count_items = ClassSoldierAddress::sqlGetCountItems('', array('id_soldier' => $item->id));
     $this->current_page = ClassTools::getValue('number_page') ? ClassTools::getValue('number_page') : '1';
     // tytul strony
     $this->tpl_title = "{$item->name} {$item->surname}: Adresy";
     // ladowanie funkcji
     $this->load_js_functions = true;
     // pobieranie wszystkich rekordow
     $this->tpl_values['items'] = ClassSoldierAddress::sqlGetAllItems($this->using_pages, $this->current_page, $this->items_on_page, '', array('id_soldier' => $item->id));
     // id zolnierza
     $this->tpl_values['id_soldier'] = $item->id;
     // pobieranie typow adresu
     $this->tpl_values['address_types'] = ClassAddressType::sqlGetAllItemsNameById(NULL, false, true);
     // ladowanie strony z lista
     return $this->loadTemplate('/soldier/addresses');
 }
Beispiel #2
0
 public function getAddresses()
 {
     $items = ClassSoldierAddress::sqlGetAllItems(false, '1', '100', '', array('id_soldier' => $this->id));
     if ($items && is_array($items) && count($items) > 0) {
         return $items;
     }
     return false;
 }