use nice URI's for the email module
[platal.git] / hooks / emails.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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// {{{ config HOOK
23
24// {{{ class SkinConfig
25
26class MailConfig
27{
28 var $domain = '';
29 var $domain2 = '';
30
31 var $alias_dom = '';
32 var $alias_dom2 = '';
33
34 var $send_form = true;
35
36 function shorter_domain()
37 {
38 if (empty($this->domain2) || strlen($this->domain2)>strlen($this->domain)) {
39 return $this->domain;
40 } else {
41 return $this->domain2;
42 }
43 }
44}
45
46// }}}
47
48function emails_config()
49{
50 global $globals;
51 $globals->mail = new MailConfig;
52}
53// }}}
54// {{{ menu HOOK
55
56function emails_menu()
57{
58 global $globals;
81b5b746 59 $globals->menu->addPrivateEntry(XOM_CUSTOM, 00, 'Mes emails', 'emails');
0337d704 60
61 if ($globals->mail->send_form) {
81b5b746 62 $globals->menu->addPrivateEntry(XOM_SERVICES, 00, 'Envoyer un mail', 'emails/send');
0337d704 63 }
64
81b5b746 65 $globals->menu->addPrivateEntry(XOM_SERVICES, 40, 'Patte cassée', 'emails/broken');
0337d704 66
67}
68
69// }}}
70// {{{ prefs HOOK
71
72function emails_prefs()
73{
74 global $globals;
75
76 $res[] = Array(
81b5b746 77 'url' => 'emails',
0337d704 78 'title' => 'Mes adresses de redirection',
79 'text' => 'Tu peux configurer tes différentes redirections de mails ici.',
80 'weight' => 10
81 );
82
83 if ($globals->mail->alias_dom) {
84 $res [] = Array(
81b5b746 85 'url' => 'emails/alias',
0337d704 86 'title' => 'Mon alias mail @'.$globals->mail->alias_dom,
87 'text' => "Pour choisir un alias @{$globals->mail->alias_dom}/{$globals->mail->alias_dom2} (en choisir un nouveau annule l'ancien).",
88 'weight' => 20
89 );
90 }
91
92
93 return $res;
94}
95
96// }}}
97?>