3041b0546bd9d78cdce5ac307a850cced2c5d1ca
[platal.git] / modules / profile / deltaten.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2014 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 class ProfilePageDeltaten extends ProfilePage
23 {
24 protected $pg_template = 'profile/deltaten.tpl';
25
26 public function __construct(PlWizard $wiz)
27 {
28 parent::__construct($wiz);
29 $this->settings['message'] = null;
30 }
31
32 protected function _fetchData()
33 {
34 $res = XDB::query('SELECT message
35 FROM profile_deltaten
36 WHERE pid = {?}',
37 $this->pid());
38 $this->values['message'] = $res->fetchOneCell();
39 }
40
41 protected function _saveData()
42 {
43 if ($this->changed['message']) {
44 $message = trim($this->values['message']);
45 if (empty($message)) {
46 XDB::execute('DELETE FROM profile_deltaten
47 WHERE pid = {?}',
48 $this->pid());
49 $this->values['message'] = null;
50 } else {
51 XDB::execute('INSERT INTO profile_deltaten (pid, message)
52 VALUES ({?}, {?})
53 ON DUPLICATE KEY UPDATE message = VALUES(message)',
54 $this->pid(), $message);
55 $this->values['message'] = $message;
56 }
57 }
58 }
59
60 public function _prepare(PlPage $page, $id)
61 {
62 $page->assign('hrpid', $this->profile->hrpid);
63 }
64 }
65
66 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
67 ?>