/** * @brief Display the room list */ function ajaxList($room) { if (!$this->validateRoom($room)) { return; } $view = $this->tpl(); $cd = new \Modl\ContactDAO(); $view->assign('list', $cd->getPresences($room)); Dialog::fill($view->draw('_rooms_list', true), true); }