You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

98 lines
3.7 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
require_once('tiki-setup.php');
include_once('lib/newsletters/nllib.php');
$access->check_feature('feature_newsletters');
if (! empty($_REQUEST['nlId'])) {
$smarty->assign('nlId', $_REQUEST["nlId"]);
$nl_info = $nllib->get_newsletter($_REQUEST["nlId"]);
if (empty($nl_info)) {
$smarty->assign('msg', tra('Newsletter does not exist'));
$smarty->display('error.tpl');
die;
}
$smarty->assign_by_ref('nl_info', $nl_info);
}
$access->check_feature('feature_newsletters');
$access->check_permission_either(['tiki_p_view_newsletter']);
if (isset($_REQUEST['remove']) && ! empty($_REQUEST['nlId'])) {
if (! $tikilib->user_has_perm_on_object($user, $_REQUEST['nlId'], 'newsletter', 'tiki_p_admin_newsletters')) {
$smarty->assign('msg', tra("You do not have the permission that is needed to use this feature"));
$smarty->display("error.tpl");
die;
}
$access->check_authenticity();
$nllib->remove_edition($_REQUEST["nlId"], $_REQUEST["remove"]);
}
if (! empty($_REQUEST['error'])) {
$edition_errors = $nllib->get_edition_errors($_REQUEST['error']);
$edition_info = $nllib->get_edition($_REQUEST['error']);
$smarty->assign_by_ref('edition_errors', $edition_errors);
$smarty->assign_by_ref('edition_info', $edition_info);
}
if (! empty($_REQUEST['deleteError'])) {
$edition_errors = $nllib->remove_edition_errors($_REQUEST['deleteError']);
}
if (! isset($_REQUEST["ed_sort_mode"])) {
$ed_sort_mode = 'sent_desc';
} else {
$ed_sort_mode = $_REQUEST["ed_sort_mode"];
}
if (! isset($_REQUEST["ed_offset"])) {
$ed_offset = 0;
} else {
$ed_offset = $_REQUEST["ed_offset"];
}
$smarty->assign_by_ref('ed_offset', $ed_offset);
if (isset($_REQUEST["ed_find"])) {
$ed_find = $_REQUEST["ed_find"];
} else {
$ed_find = '';
}
$smarty->assign('ed_find', $ed_find);
$smarty->assign_by_ref('ed_sort_mode', $ed_sort_mode);
if (isset($_REQUEST["nlId"])) {
$channels = $nllib->list_editions($_REQUEST["nlId"], $ed_offset, $maxRecords, $ed_sort_mode, $ed_find, false, 'tiki_p_view_newsletter');
} else {
$channels = $nllib->list_editions(0, $ed_offset, $maxRecords, $ed_sort_mode, $ed_find, false, 'tiki_p_view_newsletter');
}
$cant_pages = ceil($channels["cant"] / $maxRecords);
$smarty->assign_by_ref('cant_pages', $cant_pages);
$smarty->assign('actual_page', 1 + ($ed_offset / $maxRecords));
if ($channels["cant"] > ($ed_offset + $maxRecords)) {
$smarty->assign('next_offset', $ed_offset + $maxRecords);
} else {
$smarty->assign('next_offset', -1);
}
// If offset is > 0 then prev_offset
if ($ed_offset > 0) {
$smarty->assign('prev_offset', $ed_offset - $maxRecords);
} else {
$smarty->assign('prev_offset', -1);
}
$smarty->assign_by_ref('channels', $channels["data"]);
$smarty->assign('url', "tiki-newsletter_archives.php");
if (isset($_REQUEST['editionId'])) {
foreach ($channels['data'] as $edition) {
if ($edition['editionId'] == $_REQUEST['editionId']) {
$is_html = $edition['wysiwyg'] === 'y' && $prefs['wysiwyg_htmltowiki'] !== 'y'; // parse as html if wysiwyg and not htmltowiki
$edition["dataparsed"] = TikiLib::lib('parser')->parse_data($edition["data"], ['is_html' => $is_html]);
$smarty->assign_by_ref('edition', $edition);
break;
}
}
}
ask_ticket('newsletters');
$section = 'newsletters';
include_once('tiki-section_options.php');
// Display the template
$smarty->assign('mid', 'tiki-newsletter_archives.tpl');
$smarty->display("tiki.tpl");