Merge branch 'xorg/master' into xorg/f/xnet-accounts
[platal.git] / modules / xnetnl.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 Polytechnique.org *
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
22 Platal::load('newsletter');
23
24 <<<<<<< HEAD:htdocs/javascript/password.js
25 if (pw1 == '********') {
26 return true;
27 }
28 if (hasConfirmation) {
29 pw2 = $('[name=' + password2 + ']').val();
30 if (pw1 != pw2) {
31 alert("\nErreur : les deux champs ne sont pas identiques !");
32 return false;
33 }
34 $('[name=' + password2 + ']').val('');
35 =======
36 class XnetNlModule extends NewsletterModule
37 {
38 function handlers()
39 {
40 return array(
41 '%grp/nl' => $this->make_hook('nl', AUTH_MDP),
42 '%grp/nl/show' => $this->make_hook('nl_show', AUTH_MDP),
43 '%grp/nl/search' => $this->make_hook('nl_search', AUTH_MDP),
44 '%grp/admin/nl' => $this->make_hook('admin_nl', AUTH_MDP, 'groupadmin'),
45 '%grp/admin/nl/edit' => $this->make_hook('admin_nl_edit', AUTH_MDP, 'groupadmin'),
46 '%grp/admin/nl/edit/cancel' => $this->make_hook('admin_nl_cancel', AUTH_MDP, 'groupadmin'),
47 '%grp/admin/nl/edit/valid' => $this->make_hook('admin_nl_valid', AUTH_MDP, 'groupadmin'),
48 '%grp/admin/nl/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'groupadmin'),
49 );
50 >>>>>>> xorg/master:modules/xnetnl.php
51 }
52
53 protected function getNl()
54 {
55 global $globals;
56 $group = $globals->asso('shortname');
57 return NewsLetter::forGroup($group);
58 }
59 }
60
61 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
62 ?>