/**
  * Displays the results for the given input.
  */
 public function showSearchResults()
 {
     $new_search_toolbar = $this->createNewSearchToolbar();
     $search_form = $this->createForm();
     $rooms_table = new ilRoomSharingRoomsTableGUI($this, "showSearchResults", $this->ref_id);
     $rooms_table->setTitle($this->lng->txt("search_results"));
     $rooms_table->getItems($this->getFormInput($search_form));
     $this->tpl->setContent($new_search_toolbar->getHTML() . $rooms_table->getHTML());
 }