X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fuserset.inc.php;h=7efd5c1d3423ec001fc96752cbb4769131a4a773;hb=08d7cc452e666835373023f2ca8416e75e2cb9c5;hp=7409ed71f97bb23471660491ec415f71e3d6fa64;hpb=179afa7fa79902e11498314d37fe4dbf452b3617;p=platal.git diff --git a/include/userset.inc.php b/include/userset.inc.php index 7409ed7..7efd5c1 100644 --- a/include/userset.inc.php +++ b/include/userset.inc.php @@ -48,7 +48,7 @@ class UserSet extends PlSet 'INNER JOIN groupex.membres AS gxm ON (u.user_id = gxm.uid AND gxm.asso_id = ' . $globals->asso('id') . ') ' : '') . 'LEFT JOIN auth_user_quick AS q USING (user_id) - LEFT JOIN aliases AS a ON (a.id = u.user_id AND type = \'a_vie\') + LEFT JOIN aliases AS a ON (a.id = u.user_id AND a.type = \'a_vie\') ' . $joins, $where, 'u.user_id'); @@ -88,7 +88,7 @@ class SearchSet extends UserSet $qSearch = new QuickSearch('quick'); $fields = new SFieldGroup(true, array($qSearch)); if ($qSearch->isEmpty()) { - new ThrowError('Recherche trop générale.'); + new ThrowError('Aucun critère de recherche n\'est spécifié.'); } $this->score = $qSearch->get_score_statement(); $pwhere = $fields->get_where_statement(); @@ -186,7 +186,8 @@ class MinificheView extends MultipageView ad1.text AS app1text, ad1.url AS app1url, ai1.type AS app1type, adr.city, gp.a2, gp.pays AS countrytxt, gr.name AS region, IF(u.nom_usage<>'',u.nom_usage,u.nom) AS sortkey, - COUNT(em.email) > 0 AS actif" . (S::logged() ? ", c.contact AS contact" : ''); + (COUNT(em.email) > 0 OR FIND_IN_SET('googleapps', u.mail_storage) > 0) AS actif" . + (S::logged() ? ", c.contact AS contact" : ''); } public function joins() @@ -230,7 +231,7 @@ class MentorView extends MultipageView public function fields() { return "m.uid, u.prenom, u.nom, u.promo, - a.alias AS bestalias, m.expertise, mp.pid, + a.alias AS forlife, m.expertise, mp.pid, ms.secteur, ms.ss_secteur"; } @@ -269,7 +270,7 @@ class TrombiView extends MultipageView return 'include/plview.trombi.tpl'; } - public function apply(PlatalPage &$page) + public function apply(PlPage &$page) { if (!empty($GLOBALS['IS_XNET_SITE'])) { global $globals; @@ -306,7 +307,7 @@ class GeolocView implements PlView return $args; } - public function apply(PlatalPage &$page) + public function apply(PlPage &$page) { require_once 'geoloc.inc.php'; require_once '../modules/search/search.inc.php'; @@ -374,5 +375,47 @@ class GeolocView implements PlView } } +class GadgetView implements PlView +{ + public function __construct(PlSet &$set, $data, array $params) + { + $this->set =& $set; + } + + public function fields() + { + return "u.user_id AS id, + u.*, a.alias AS forlife," . + (S::logged() ? "q.profile_mobile AS mobile, " : "IF(q.profile_mobile_pub = 'public', q.profile_mobile, NULL) as mobile, ") . + "u.perms != 'pending' AS inscrit, + u.perms != 'pending' AS wasinscrit, + u.deces != 0 AS dcd, u.deces, + FIND_IN_SET('femme', u.flags) AS sexe, + adr.city, gp.a2, gp.pays AS countrytxt, gr.name AS region" . + (S::logged() ? ", c.contact AS contact" : ''); + } + + public function joins() + { + return "LEFT JOIN adresses AS adr ON (u.user_id = adr.uid AND FIND_IN_SET('active', adr.statut)".(S::logged() ? "" : " AND adr.pub = 'public'").") + LEFT JOIN geoloc_pays AS gp ON (adr.country = gp.a2) + LEFT JOIN geoloc_region AS gr ON (adr.country = gr.a2 AND adr.region = gr.region)" . + (S::logged() ? + "LEFT JOIN contacts AS c On (c.contact = u.user_id AND c.uid = " . S::v('uid') . ")" + : ""); + } + + public function apply(PlPage &$page) + { + $page->assign_by_ref('set', + $this->set->get($this->fields(), $this->joins(), null, null, null, 5, 0)); + } + + public function args() + { + return null; + } +} + // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>