$tpl->set('items', $items); $Result['content'] = $tpl->fetch(); $Result['pagelayout'] = 'popup'; return; } if (in_array($Params['user_parameters_unordered']['xls'], array(1, 2))) { erLhcoreClassChatExport::chatListExportXLS(erLhcoreClassChat::getList(array_merge($filterParams['filter'], array('limit' => 100000, 'offset' => 0))), array('type' => (int) $Params['user_parameters_unordered']['xls'])); exit; } $append = erLhcoreClassSearchHandler::getURLAppendFromInput($filterParams['input_form']); $pages = new lhPaginator(); $pages->items_total = erLhcoreClassChat::getCount($filterParams['filter']); $pages->translationContext = 'chat/pendingchats'; $pages->serverURL = erLhcoreClassDesign::baseurl('chat/list') . $append; $pages->paginate(); $tpl->set('pages', $pages); if ($pages->items_total > 0) { $items = erLhcoreClassChat::getList(array_merge($filterParams['filter'], array('limit' => $pages->items_per_page, 'offset' => $pages->low))); erLhcoreClassChat::setOnlineStatusDirectly($items); $tpl->set('items', $items); } $filterParams['input_form']->form_action = erLhcoreClassDesign::baseurl('chat/list'); $tpl->set('input', $filterParams['input_form']); $tpl->set('inputAppend', $append); $tpl->set('can_delete_global', $currentUser->hasAccessTo('lhchat', 'deleteglobalchat')); $tpl->set('can_delete_general', $currentUser->hasAccessTo('lhchat', 'deletechat')); $tpl->set('can_close_global', $currentUser->hasAccessTo('lhchat', 'allowcloseremote')); $tpl->set('current_user_id', $currentUser->getUserID()); $Result['content'] = $tpl->fetch(); $Result['path'] = array(array('url' => erLhcoreClassDesign::baseurl('chat/list'), 'title' => erTranslationClassLhTranslation::getInstance()->getTranslation('chat/pendingchats', 'Chats list'))); erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.list_path', array('result' => &$Result));