dolibarr  16.0.5
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 
27 if (!defined('NOLOGIN')) {
28  define("NOLOGIN", 1); // This means this output page does not require to be logged.
29 }
30 if (!defined('NOCSRFCHECK')) {
31  define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
32 }
33 if (!defined('NOIPCHECK')) {
34  define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
35 }
36 if (!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));
44 if (is_numeric($entity)) {
45  define("DOLENTITY", $entity);
46 }
47 
48 require '../../main.inc.php';
49 
50 // Security check
51 if (empty($conf->adherent->enabled)) {
52  accessforbidden('', 0, 0, 1);
53 }
54 
55 
56 $langs->loadLangs(array("main", "members", "companies", "other"));
57 
58 
66 function llxHeaderVierge($title, $head = "")
67 {
68  top_htmlhead($head, $title);
69 
70  print '<body class="public_body">'."\n";
71 }
72 
78 function llxFooterVierge()
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');
91 if (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 
101 if (!$sortorder) {
102  $sortorder = "ASC";
103 }
104 if (!$sortfield) {
105  $sortfield = "lastname";
106 }
107 
108 
109 /*
110  * View
111  */
112 
113 $form = new Form($db);
114 
115 $morehead = '';
116 if (!empty($conf->global->MEMBER_PUBLIC_CSS)) {
117  $morehead = '<link rel="stylesheet" type="text/css" href="'.$conf->global->MEMBER_PUBLIC_CSS.'">';
118 } else {
119  $morehead = '<link rel="stylesheet" type="text/css" href="'.DOL_URL_ROOT.'/theme/eldy/style.css.php">';
120 }
121 
122 llxHeaderVierge($langs->trans("ListOfValidatedPublicMembers"), $morehead);
123 
124 $sql = "SELECT rowid, firstname, lastname, societe, zip, town, email, birth, photo";
125 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
126 $sql .= " WHERE entity = ".((int) $entity);
127 $sql .= " AND statut = 1";
128 $sql .= " AND public = 1";
129 $sql .= $db->order($sortfield, $sortorder);
130 $sql .= $db->plimit($conf->liste_limit + 1, $offset);
131 //$sql = "SELECT d.rowid, d.firstname, d.lastname, d.societe, zip, town, d.email, t.libelle as type, d.morphy, d.statut, t.subscription";
132 //$sql .= " FROM ".MAIN_DB_PREFIX."adherent as d, ".MAIN_DB_PREFIX."adherent_type as t";
133 //$sql .= " WHERE d.fk_adherent_type = t.rowid AND d.statut = $statut";
134 //$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit, $offset);
135 
136 $result = $db->query($sql);
137 if ($result) {
138  $num = $db->num_rows($result);
139  $i = 0;
140 
141  $param = "&statut=$statut&sortorder=$sortorder&sortfield=$sortfield";
142  print_barre_liste($langs->trans("ListOfValidatedPublicMembers"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, 0, '');
143  print '<table class="public_border centpercent">';
144 
145  print '<tr class="public_liste_titre">';
146  print '<th class="left"><a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=firstname">'.dolGetFirstLastname($langs->trans("Firstname"), $langs->trans("Lastname")).'</a></th>';
147  print '<th class="left"><a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=societe">'.$langs->trans("Company").'</a></th>'."\n";
148  //print_liste_field_titre("DateOfBirth", $_SERVER["PHP_SELF"],"birth",'',$param,$sortfield,$sortorder); // est-ce nĂ©cessaire ??
149  print_liste_field_titre("EMail", $_SERVER["PHP_SELF"], "email", '', $param, '', $sortfield, $sortorder, 'left public_');
150  print_liste_field_titre("Zip", $_SERVER["PHP_SELF"], "zip", "", $param, '', $sortfield, $sortorder, 'left public_');
151  print_liste_field_titre("Town", $_SERVER["PHP_SELF"], "town", "", $param, '', $sortfield, $sortorder, 'left public_');
152  print_liste_field_titre("Photo", $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center public_');
153  print "</tr>\n";
154 
155  while ($i < $num && $i < $conf->liste_limit) {
156  $objp = $db->fetch_object($result);
157 
158  print '<tr class="oddeven">';
159  print '<td><a href="public_card.php?id='.$objp->rowid.'">'.dolGetFirstLastname($objp->firstname, $objp->lastname).'</a></td>'."\n";
160  print '<td>'.$objp->societe.'</td>'."\n";
161  print '<td>'.$objp->email.'</td>'."\n";
162  print '<td>'.$objp->zip.'</td>'."\n";
163  print '<td>'.$objp->town.'</td>'."\n";
164  if (isset($objp->photo) && $objp->photo != '') {
165  print '<td class="center">';
166  print $form->showphoto('memberphoto', $objp, 64);
167  print '</td>'."\n";
168  } else {
169  print "<td>&nbsp;</td>\n";
170  }
171  print "</tr>";
172  $i++;
173  }
174  print "</table>";
175 } else {
176  dol_print_error($db);
177 }
178 
179 
181 
182 $db->close();
llxFooterVierge
llxFooterVierge()
Show footer for member list.
Definition: public_list.php:78
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
top_htmlhead
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Ouput html header of a page.
Definition: main.inc.php:1482
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
printCommonFooter
printCommonFooter($zone='private')
Print common footer : conf->global->MAIN_HTML_FOOTER js for switch of menu hider js for conf->global-...
Definition: functions.lib.php:9150
print_barre_liste
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.
Definition: functions.lib.php:5257
dolGetFirstLastname
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
Definition: functions.lib.php:8062
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
print_liste_field_titre
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
Definition: functions.lib.php:5026
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
llxHeaderVierge
llxHeaderVierge($title, $head="")
Show header for member list.
Definition: public_list.php:66