check_feature('feature_submissions'); $access->check_permission('tiki_p_submit_article'); //get_strings tra('View submissions') $auto_query_args = [ 'subId', 'offset', 'maxRecords', 'sort_mode', 'find', 'type', 'topic', 'lang', ]; if (isset($_REQUEST["remove"])) { $access->check_permission('tiki_p_remove_submission'); $access->checkCsrf(tr('Are you sure you want to permanently remove the submitted article with identifier %0?', $_REQUEST["remove"])); $artlib->remove_submission($_REQUEST["remove"]); } if (isset($_REQUEST["approve"])) { check_ticket('list-submissions'); $access->check_permission('tiki_p_approve_submission'); $artlib->approve_submission($_REQUEST["approve"]); } if (isset($_REQUEST['submit_mult']) && count($_REQUEST["checked"]) > 0) { if ($_REQUEST['submit_mult'] === 'remove_subs') { $access->check_permission('tiki_p_remove_submission'); $access->checkCsrf(tr('Are you sure you want to permanently remove these %0 submitted articles?', count($_REQUEST["checked"]))); foreach ($_REQUEST["checked"] as $sId) { $artlib->remove_submission($sId); } } elseif ($_REQUEST['submit_mult'] === 'approve_subs') { $access->check_permission('tiki_p_approve_submission'); $access->checkCsrf(tr('Are you sure you want to approve these %0 submitted articles?', count($_REQUEST["checked"]))); foreach ($_REQUEST["checked"] as $sId) { $artlib->approve_submission($sId); } } } if (isset($_REQUEST["deleteexpired"])) { $access->check_permission('tiki_p_remove_submission'); $access->checkCsrf(tr('Are you sure you want to permanently remove all expired submitted articles?')); $artlib->delete_expired_submissions(); } // This script can receive the threshold // for the information as the number of // days to get in the log 1,3,4,etc // it will default to 1 recovering information for today if (! isset($_REQUEST["sort_mode"])) { $sort_mode = 'publishDate_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('sort_mode', $sort_mode); // If offset is set use it if not then use offset =0 // use the maxRecords php variable to set the limit // if sortMode is not set then use lastModif_desc if (! empty($_REQUEST['maxRecords'])) { $maxRecords = $_REQUEST['maxRecords']; } else { $maxRecords = $prefs['maxRecords']; } if (! isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (($tiki_p_admin == 'y') || ($tiki_p_admin_cms == 'y')) { $pdate = ''; } elseif (isset($_SESSION["thedate"])) { if ($_SESSION["thedate"] < $tikilib->now) { $pdate = $_SESSION["thedate"]; } else { $pdate = $tikilib->now; } } else { $pdate = $tikilib->now; } if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); if (! isset($_REQUEST['topic'])) { $_REQUEST['topic'] = ''; } if (! isset($_REQUEST['type'])) { $_REQUEST['type'] = ''; } if (! isset($_REQUEST['lang'])) { $_REQUEST['lang'] = ''; } $smarty->assign('find_topic', $_REQUEST['topic']); $smarty->assign('find_type', $_REQUEST['type']); $smarty->assign('find_lang', $_REQUEST['lang']); $smarty->assign('topics', $artlib->list_topics()); $smarty->assign('types', $artlib->list_types()); if ($prefs['feature_multilingual'] == 'y') { $langLib = TikiLib::lib('language'); $languages = $langLib->list_languages(false, 'y'); $smarty->assign('languages', $languages); } $listpages = $artlib->list_submissions($offset, $maxRecords, $sort_mode, $find, $pdate, $_REQUEST['type'], $_REQUEST['topic'], $_REQUEST['lang']); $smarty->assign_by_ref('cant_pages', $listpages["cant"]); include_once('tiki-section_options.php'); $smarty->assign_by_ref('listpages', $listpages["data"]); ask_ticket('list-submissions'); // Display the template $smarty->assign('mid', 'tiki-list_submissions.tpl'); $smarty->display("tiki.tpl");