public function getTemplateParameters()
 {
     $clubId = $this->_websoccer->getUser()->getClubId($this->_websoccer, $this->_db);
     $userId = $this->_websoccer->getUser()->id;
     $offers = array();
     $count = DirectTransfersDataService::countSentOffers($this->_websoccer, $this->_db, $clubId, $userId);
     $eps = $this->_websoccer->getConfig("entries_per_page");
     $paginator = new Paginator($count, $eps, $this->_websoccer);
     $paginator->addParameter("block", "directtransfer-sentoffers");
     if ($count > 0) {
         $offers = DirectTransfersDataService::getSentOffers($this->_websoccer, $this->_db, $paginator->getFirstIndex(), $eps, $clubId, $userId);
     } else {
         $offers = array();
     }
     return array("offers" => $offers, "paginator" => $paginator);
 }