dolibarr 18.0.6
public_list.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
4 * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27if (!defined('NOLOGIN')) {
28 define("NOLOGIN", 1); // This means this output page does not require to be logged.
29}
30if (!defined('NOCSRFCHECK')) {
31 define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
32}
33if (!defined('NOIPCHECK')) {
34 define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
35}
36if (!defined('NOBROWSERNOTIF')) {
37 define('NOBROWSERNOTIF', '1');
38}
39
40// For MultiCompany module.
41// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
42// TODO This should be useless. Because entity must be retrieve from object ref and not from url.
43$entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1));
44if (is_numeric($entity)) {
45 define("DOLENTITY", $entity);
46}
47
48// Load Dolibarr environment
49require '../../main.inc.php';
50
51// Security check
52if (!isModEnabled('adherent')) {
53 httponly_accessforbidden('Module Membership not enabled');
54}
55
56$langs->loadLangs(array("main", "members", "companies", "other"));
57
58
66function llxHeaderVierge($title, $head = "")
67{
68 top_htmlhead($head, $title);
69
70 print '<body class="public_body">'."\n";
71}
72
79{
80 printCommonFooter('public');
81
82 print "</body>\n";
83 print "</html>\n";
84}
85
86
87$sortfield = GETPOST('sortfield', 'aZ09comma');
88$sortorder = GETPOST('sortorder', 'aZ09comma');
89$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
90$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
91if (empty($page) || $page == -1) {
92 $page = 0;
93} // If $page is not defined, or '' or -1
94$offset = $limit * $page;
95$pageprev = $page - 1;
96$pagenext = $page + 1;
97
98$filter = GETPOST('filter');
99$statut = GETPOST('statut');
100
101if (!$sortorder) {
102 $sortorder = "ASC";
103}
104if (!$sortfield) {
105 $sortfield = "lastname";
106}
107
108
109/*
110 * View
111 */
112
113if (empty($conf->global->MEMBER_PUBLIC_ENABLED)) {
114 httponly_accessforbidden('Public access of list of members is not enabled');
115}
116
117$form = new Form($db);
118
119$morehead = '';
120if (!empty($conf->global->MEMBER_PUBLIC_CSS)) {
121 $morehead = '<link rel="stylesheet" type="text/css" href="'.$conf->global->MEMBER_PUBLIC_CSS.'">';
122} else {
123 $morehead = '<link rel="stylesheet" type="text/css" href="'.DOL_URL_ROOT.'/theme/eldy/style.css.php">';
124}
125
126llxHeaderVierge($langs->trans("ListOfValidatedPublicMembers"), $morehead);
127
128$sql = "SELECT rowid, firstname, lastname, societe, zip, town, email, birth, photo";
129$sql .= " FROM ".MAIN_DB_PREFIX."adherent";
130$sql .= " WHERE entity = ".((int) $entity);
131$sql .= " AND statut = 1";
132$sql .= " AND public = 1";
133$sql .= $db->order($sortfield, $sortorder);
134$sql .= $db->plimit($conf->liste_limit + 1, $offset);
135//$sql = "SELECT d.rowid, d.firstname, d.lastname, d.societe, zip, town, d.email, t.libelle as type, d.morphy, d.statut, t.subscription";
136//$sql .= " FROM ".MAIN_DB_PREFIX."adherent as d, ".MAIN_DB_PREFIX."adherent_type as t";
137//$sql .= " WHERE d.fk_adherent_type = t.rowid AND d.statut = $statut";
138//$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit, $offset);
139
140$result = $db->query($sql);
141if ($result) {
142 $num = $db->num_rows($result);
143 $i = 0;
144
145 $param = "&statut=$statut&sortorder=$sortorder&sortfield=$sortfield";
146 print_barre_liste($langs->trans("ListOfValidatedPublicMembers"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, 0, '');
147 print '<table class="public_border centpercent">';
148
149 print '<tr class="public_liste_titre">';
150 print '<th class="left"><a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=firstname">'.dolGetFirstLastname($langs->trans("Firstname"), $langs->trans("Lastname")).'</a></th>';
151 print '<th class="left"><a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=societe">'.$langs->trans("Company").'</a></th>'."\n";
152 //print_liste_field_titre("DateOfBirth", $_SERVER["PHP_SELF"],"birth",'',$param,$sortfield,$sortorder); // est-ce nécessaire ??
153 print_liste_field_titre("EMail", $_SERVER["PHP_SELF"], "email", '', $param, '', $sortfield, $sortorder, 'left public_');
154 print_liste_field_titre("Zip", $_SERVER["PHP_SELF"], "zip", "", $param, '', $sortfield, $sortorder, 'left public_');
155 print_liste_field_titre("Town", $_SERVER["PHP_SELF"], "town", "", $param, '', $sortfield, $sortorder, 'left public_');
156 print_liste_field_titre("Photo", $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center public_');
157 print "</tr>\n";
158
159 while ($i < $num && $i < $conf->liste_limit) {
160 $objp = $db->fetch_object($result);
161
162 print '<tr class="oddeven">';
163 print '<td><a href="public_card.php?id='.$objp->rowid.'">'.dolGetFirstLastname($objp->firstname, $objp->lastname).'</a></td>'."\n";
164 print '<td>'.$objp->societe.'</td>'."\n";
165 print '<td>'.$objp->email.'</td>'."\n";
166 print '<td>'.$objp->zip.'</td>'."\n";
167 print '<td>'.$objp->town.'</td>'."\n";
168 if (isset($objp->photo) && $objp->photo != '') {
169 print '<td class="center">';
170 print $form->showphoto('memberphoto', $objp, 64);
171 print '</td>'."\n";
172 } else {
173 print "<td>&nbsp;</td>\n";
174 }
175 print "</tr>";
176 $i++;
177 }
178 print "</table>";
179} else {
180 dol_print_error($db);
181}
182
183
185
186$db->close();
if(!defined( 'NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined( 'NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(!defined( 'NOLOGIN')) if(!defined('NOCSRFCHECK')) if(!defined( 'NOIPCHECK')) llxHeaderVierge()
Header function.
Class to manage generation of HTML components Only common components must be here.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
printCommonFooter($zone='private')
Print common footer : conf->global->MAIN_HTML_FOOTER js for switch of menu hider js for conf->global-...
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Ouput html header of a page.
llxFooterVierge()
Show footer for member list.
httponly_accessforbidden($message=1, $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.