Revert "Initial work on the rewriting of the profile/edit page"
[platal.git] / modules / newsletter.php
CommitLineData
e2efba7d 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
e2efba7d 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22class NewsletterModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
27 'nl' => $this->make_hook('nl', AUTH_COOKIE),
28 'nl/show' => $this->make_hook('nl_show', AUTH_COOKIE),
29 'nl/submit' => $this->make_hook('nl_submit', AUTH_MDP),
30 'admin/newsletter' => $this->make_hook('admin_nl', AUTH_MDP, 'admin'),
31 'admin/newsletter/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'admin'),
32 'admin/newsletter/edit' => $this->make_hook('admin_nl_edit', AUTH_MDP, 'admin'),
33 );
34 }
35
e2efba7d 36 function handler_nl(&$page, $action = null)
37 {
38 require_once 'newsletter.inc.php';
39
40 $page->changeTpl('newsletter/index.tpl');
41 $page->assign('xorg_title','Polytechnique.org - Lettres mensuelles');
42
43 switch ($action) {
4882f4a5 44 case 'out': Newsletter::unsubscribe(); break;
45 case 'in': Newsletter::subscribe(); break;
e2efba7d 46 default: ;
47 }
48
4882f4a5 49 $page->assign('nls', Newsletter::subscriptionState());
50 $page->assign('nl_list', Newsletter::listSent());
e2efba7d 51 }
52
53 function handler_nl_show(&$page, $nid = 'last')
54 {
55 $page->changeTpl('newsletter/show.tpl');
56
57 require_once 'newsletter.inc.php';
58
59 $nl = new NewsLetter($nid);
11f44323 60 if (Get::has('text')) {
61 $nl->toText($page, S::v('prenom'), S::v('nom'), S::v('femme'));
62 } else {
63 $nl->toHtml($page, S::v('prenom'), S::v('nom'), S::v('femme'));
64 }
e2efba7d 65 if (Post::has('send')) {
66 $nl->sendTo(S::v('prenom'), S::v('nom'),
67 S::v('bestalias'), S::v('femme'),
68 S::v('mail_fmt') != 'texte');
69 }
70 }
71
72 function handler_nl_submit(&$page)
73 {
74 $page->changeTpl('newsletter/submit.tpl');
75
76 require_once 'newsletter.inc.php';
f4f8db6b 77 require_once 'wiki.inc.php';
78 wiki_require_page('Xorg.LettreMensuelle');
e2efba7d 79
1970c12b 80 if (Post::has('see') || (Post::has('valid') && (!trim(Post::v('title')) || !trim(Post::v('body'))))) {
81 if (!Post::has('see')) {
82 $page->trig("L'article doit avoir un titre et un contenu");
83 }
e2efba7d 84 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'));
85 $page->assign('art', $art);
86 } elseif (Post::has('valid')) {
87 require_once('validations.inc.php');
88 $art = new NLReq(S::v('uid'), Post::v('title'),
89 Post::v('body'), Post::v('append'));
90 $art->submit();
91 $page->assign('submited', true);
92 }
1970c12b 93 $page->addCssLink('nl.css');
e2efba7d 94 }
95
96 function handler_admin_nl(&$page, $new = false) {
97 $page->changeTpl('newsletter/admin.tpl');
98 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : liste');
99 require_once("newsletter.inc.php");
100
101 if($new) {
4882f4a5 102 Newsletter::create();
103 pl_redirect("admin/newsletter");
e2efba7d 104 }
105
4882f4a5 106 $page->assign('nl_list', Newsletter::listAll());
e2efba7d 107 }
108
109 function handler_admin_nl_edit(&$page, $nid = 'last', $aid = null, $action = 'edit') {
110 $page->changeTpl('newsletter/edit.tpl');
3ad44e08 111 $page->addCssLink('nl.css');
e2efba7d 112 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : Edition');
113 require_once("newsletter.inc.php");
114
115 $nl = new NewsLetter($nid);
116
117 if($action == 'delete') {
118 $nl->delArticle($aid);
119 pl_redirect("admin/newsletter/edit/$nid");
120 }
121
122 if($aid == 'update') {
123 $nl->_title = Post::v('title');
124 $nl->_title_mail= Post::v('title_mail');
125 $nl->_date = Post::v('date');
126 $nl->_head = Post::v('head');
127 $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null;
128 if (preg_match('/^[-a-z0-9]*$/i', $nl->_shortname) && !is_numeric($nl->_shortname)) {
129 $nl->save();
130 } else {
131 $page->trig('Le nom de la NL n\'est pas valide');
132 pl_redirect('admin/newsletter/edit/' . $nl->_id);
133 }
134 }
135
136 if(Post::v('save')) {
137 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
138 $aid, Post::v('cid'), Post::v('pos'));
139 $nl->saveArticle($art);
140 pl_redirect("admin/newsletter/edit/$nid");
141 }
142
143 if($action == 'edit' && $aid != 'update') {
144 $eaid = $aid;
145 if(Post::has('title')) {
146 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
147 $eaid, Post::v('cid'), Post::v('pos'));
148 } else {
149 $art = ($eaid == 'new') ? new NLArticle() : $nl->getArt($eaid);
150 }
151 $page->assign('art', $art);
152 }
153
154 $page->assign_by_ref('nl',$nl);
155 }
156
157 function handler_admin_nl_cat(&$page, $action = 'list', $id = null) {
a7de4ef7 158 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : Catégories');
159 $page->assign('title', 'Gestion des catégories de la newsletter');
e2efba7d 160 $table_editor = new PLTableEditor('admin/newsletter/categories','newsletter_cat','cid');
a7de4ef7 161 $table_editor->describe('titre','intitulé',true);
e2efba7d 162 $table_editor->describe('pos','position',true);
163 $table_editor->apply($page, $action, $id);
bc0903c7 164 }
e2efba7d 165}
166
a7de4ef7 167// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
e2efba7d 168?>