Fixes nationalities deletion.
[platal.git] / modules / profile / groups.inc.php
index 40b8b61..8aadbdd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2007 Polytechnique.org                              *
+ *  Copyright (C) 2003-2010 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
-class ProfileGroups extends ProfilePage
+class ProfileSettingSection implements ProfileSetting
 {
-    protected $pg_template = 'profile/poly.tpl';
+    public function value(ProfilePage &$page, $field, $value, &$success)
+    {
+        $success = true;
+        if (is_null($value)) {
+            $res = XDB::query("SELECT  section
+                                 FROM  profiles
+                                WHERE  pid = {?}",
+                              $page->pid());
+            return intval($res->fetchOneCell());
+        }
+        return intval($value);
+    }
 
-    public function __construct(PlWizard &$wiz)
+    public function save(ProfilePage &$page, $field, $value)
     {
-        parent::__construct($wiz);
-        $this->settings['section'] = $this->settings['binets']
-                                   = $this->settings['groupesx']
-                                   = null;
+        XDB::execute("UPDATE  profiles
+                         SET  section = {?}
+                       WHERE  pid = {?}",
+                     $value, $page->pid());
+    }
+}
+
+class ProfileSettingBinets implements ProfileSetting
+{
+    public function __construct()
+    {
+    }
+
+    public function value(ProfilePage &$page, $field, $value, &$success)
+    {
+        if (is_null($value)) {
+            $value = array();
+            $res = XDB::iterRow("SELECT  g.id, g.text
+                                   FROM  profile_binet_enum AS g
+                             INNER JOIN  profile_binets AS i ON (i.binet_id = g.id)
+                                  WHERE  i.pid = {?}",
+                                $page->pid());
+            while (list($gid, $text) = $res->next()) {
+                $value[intval($gid)] = $text;
+            }
+        }
+        if (!is_array($value)) {
+            $value = array();
+        }
+        ksort($value);
+        $success = true;
+        return $value;
+    }
+
+    public function save(ProfilePage &$page, $field, $value)
+    {
+        XDB::execute("DELETE FROM  profile_binets
+                            WHERE  pid = {?}",
+                     $page->pid());
+        if (!count($value)) {
+            return;
+        }
+        $insert = array();
+        foreach ($value as $id=>$text) {
+            $insert[] = XDB::format('({?}, {?})', $page->pid(), $id);
+        }
+        XDB::execute("INSERT INTO  profile_binets (pid, binet_id)
+                           VALUES  " . implode(',', $insert));
     }
+}
+
+class ProfileSettingGroups extends ProfilePage
+{
+    protected $pg_template = 'profile/groups.tpl';
 
-    protected function fetchData()
+    public function __construct(PlWizard &$wiz)
     {
-        parent::fetchData();
+        parent::__construct($wiz);
+        $this->settings['section']  = new ProfileSettingSection();
+        $this->settings['binets']   = new ProfileSettingBinets();
+        $this->watched['section'] = $this->watched['binets'] = true;
     }
 
-    public function prepare(PlatalPage &$page)
+    public function _prepare(PlPage &$page, $id)
     {
-        parent::prepare($page);
+        $page->assign('mygroups', XDB::iterator("SELECT  a.nom, a.site, a.diminutif, a.unsub_url, a.pub, m.perms
+                                                   FROM  groups    AS a
+                                             INNER JOIN  group_members AS m ON (m.asso_id = a.id)
+                                                  WHERE  m.uid = {?} AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')",
+                                                $this->pid()));
+        $page->assign('listgroups', XDB::iterator("SELECT  a.nom, a.diminutif, a.sub_url,
+                                                           IF (a.cat = 'Institutions', a.cat, d.nom) AS dom
+                                                     FROM  groups  AS a
+                                                LEFT JOIN  group_dom   AS d ON (d.id = a.dom)
+                                                    WHERE  a.inscriptible != 0
+                                                           AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
+                                                 ORDER BY  a.cat, a.dom, a.nom"));
+        # XXX: FIXME: promo_sortie
+        $page->assign('old', (int)date('Y') >= S::i('promo_sortie'));
     }
 }