Fix: Update examples for public links
This commit is contained in:
parent
2233ad0b99
commit
60dfce7a96
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2006-2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2006-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -15,9 +15,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -25,18 +22,35 @@
|
|||||||
\ingroup member
|
\ingroup member
|
||||||
\brief Fichier de la page de l'espace publique adherent
|
\brief Fichier de la page de l'espace publique adherent
|
||||||
\author Laurent Destailleur
|
\author Laurent Destailleur
|
||||||
\version $Revision$
|
\version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
require("../../master.inc.php");
|
||||||
|
|
||||||
|
function llxHeaderVierge($title, $head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
print "<html>\n";
|
||||||
|
print "<head>\n";
|
||||||
|
print "<title>".$title."</title>\n";
|
||||||
|
if ($head) print $head."\n";
|
||||||
|
print "</head>\n";
|
||||||
|
print "<body>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
function llxFooter()
|
||||||
|
{
|
||||||
|
print "</body>\n";
|
||||||
|
print "</html>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Afffichage page
|
* Afffichage page
|
||||||
*/
|
*/
|
||||||
|
|
||||||
llxHeader();
|
llxHeaderVierge("Index public");
|
||||||
|
|
||||||
print_fiche_titre($langs->trans("PublicMembersArea"));
|
print_fiche_titre($langs->trans("PublicMembersArea"));
|
||||||
|
|
||||||
@ -51,8 +65,8 @@ print '<br>';
|
|||||||
print '<table class="border" cellspacing="0" cellpadding="3">';
|
print '<table class="border" cellspacing="0" cellpadding="3">';
|
||||||
print '<tr class="liste_titre"><td>'.$langs->trans("Description").'</td><td>'.$langs->trans("URL").'</td></tr>';
|
print '<tr class="liste_titre"><td>'.$langs->trans("Description").'</td><td>'.$langs->trans("URL").'</td></tr>';
|
||||||
print '<tr><td>'.$langs->trans("BlankSubscriptionForm").'</td><td><a target="_blank" href="'.DOL_URL_ROOT.'/public/adherents/new.php'.'">'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/new.php'.'</a></td></tr>';
|
print '<tr><td>'.$langs->trans("BlankSubscriptionForm").'</td><td><a target="_blank" href="'.DOL_URL_ROOT.'/public/adherents/new.php'.'">'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/new.php'.'</a></td></tr>';
|
||||||
print '<tr><td>'.$langs->trans("BlankSubscriptionEditForm").'</td><td>'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/priv_edit.php?id=xxx'.'</td></tr>';
|
|
||||||
print '<tr><td>'.$langs->trans("PublicMemberList").'</td><td><a target="_blank" href="'.DOL_URL_ROOT.'/public/adherents/priv_liste.php'.'">'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/priv_liste.php'.'</a></td></tr>';
|
print '<tr><td>'.$langs->trans("PublicMemberList").'</td><td><a target="_blank" href="'.DOL_URL_ROOT.'/public/adherents/priv_liste.php'.'">'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/priv_liste.php'.'</a></td></tr>';
|
||||||
|
print '<tr><td>'.$langs->trans("PublicMemberCard").'</td><td>'.$dolibarr_main_url_root.DOL_URL_ROOT.'/public/adherents/priv_fiche.php?id=xxx'.'</td></tr>';
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -16,22 +16,39 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/public/adherents/new.php
|
\file htdocs/public/adherents/new.php
|
||||||
\ingroup adherent
|
\ingroup adherent
|
||||||
\brief formulaire exemple pour inscription publique d'un nouveau membre
|
\brief Form example to add a new member
|
||||||
\version $Revision$
|
\version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
require("../../master.inc.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/html.form.class.php");
|
||||||
|
|
||||||
|
function llxHeaderVierge($title, $head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
print "<html>\n";
|
||||||
|
print "<head>\n";
|
||||||
|
print "<title>".$title."</title>\n";
|
||||||
|
if ($head) print $head."\n";
|
||||||
|
print "</head>\n";
|
||||||
|
print "<body>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
function llxFooter()
|
||||||
|
{
|
||||||
|
print "</body>\n";
|
||||||
|
print "</html>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$adho = new AdherentOptions($db);
|
$adho = new AdherentOptions($db);
|
||||||
$errmsg='';
|
$errmsg='';
|
||||||
@ -139,7 +156,7 @@ if (isset($_GET["action"]) && $_GET["action"] == 'added' && $conf->global->MEMBE
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
llxHeaderVierge();
|
llxHeaderVierge("New member form");
|
||||||
$html = new Form($db);
|
$html = new Form($db);
|
||||||
|
|
||||||
print_titre("Nouvel adhérent");
|
print_titre("Nouvel adhérent");
|
||||||
@ -185,11 +202,11 @@ print '<li> Les champs Commencant par un <FONT COLOR="red">*</FONT> sont obligat
|
|||||||
print '<li> Les champs Commencant par un <FONT COLOR="blue">*</FONT> seront affiche sur la liste publique des membres. Si vous ne souhaite pas cela <b>DECOCHEZ</b> la case public ci dessous';
|
print '<li> Les champs Commencant par un <FONT COLOR="blue">*</FONT> seront affiche sur la liste publique des membres. Si vous ne souhaite pas cela <b>DECOCHEZ</b> la case public ci dessous';
|
||||||
print "<li> Les login et password vous serviront a editer vos coordonnees ulterieurement<BR>\n";
|
print "<li> Les login et password vous serviront a editer vos coordonnees ulterieurement<BR>\n";
|
||||||
print "</ul><BR>\n";
|
print "</ul><BR>\n";
|
||||||
print "<form action=\"new.php\" method=\"POST\">\n";
|
|
||||||
print '<table cellspacing="0" border="1" width="100%" cellpadding="3">';
|
|
||||||
|
|
||||||
|
print "<form action=\"new.php\" method=\"POST\">\n";
|
||||||
print '<input type="hidden" name="action" value="add">';
|
print '<input type="hidden" name="action" value="add">';
|
||||||
|
|
||||||
|
print '<table cellspacing="0" border="1" width="100%" cellpadding="3">';
|
||||||
|
|
||||||
print '<tr><td width="15%">'.$langs->trans("Type").'</td><td width="35%">';
|
print '<tr><td width="15%">'.$langs->trans("Type").'</td><td width="35%">';
|
||||||
$html->select_array("type", $adht->liste_array());
|
$html->select_array("type", $adht->liste_array());
|
||||||
@ -224,11 +241,11 @@ foreach($adho->attribute_label as $key=>$value){
|
|||||||
print "<tr><td>$value</td><td><input type=\"text\" name=\"options_$key\" size=\"40\"></td></tr>\n";
|
print "<tr><td>$value</td><td><input type=\"text\" name=\"options_$key\" size=\"40\"></td></tr>\n";
|
||||||
}
|
}
|
||||||
print '<tr><td colspan="2" align="center"><input type="submit" value="'.$langs->trans("Save").'"></td></tr>';
|
print '<tr><td colspan="2" align="center"><input type="submit" value="'.$langs->trans("Save").'"></td></tr>';
|
||||||
print "</form>\n";
|
|
||||||
print "</table>\n";
|
print "</table>\n";
|
||||||
|
|
||||||
|
print "</form>\n";
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
llxFooter('$Date$ - $Revision$');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -14,14 +14,17 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\file htdocs/lib/datepicker.php
|
||||||
|
\brief Fichier de gestion de la popup de selection de date eldy
|
||||||
|
\version $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
|
|
||||||
|
|
||||||
function llxHeader($head = "")
|
function llxHeader($head = "")
|
||||||
{
|
{
|
||||||
global $user, $conf, $langs;
|
global $user, $conf, $langs;
|
||||||
@ -39,14 +42,4 @@ function llxHeader($head = "")
|
|||||||
left_menu($menu->liste);
|
left_menu($menu->liste);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function llxHeaderVierge($head = "")
|
|
||||||
{
|
|
||||||
global $user, $conf, $langs;
|
|
||||||
|
|
||||||
top_htmlhead('');
|
|
||||||
print '<body>';
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -1,278 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
* Copyright (C) 2001-2002 Jean-Louis Bergamo <jlb@j1b.org>
|
|
||||||
* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
\file htdocs/public/adherents/priv_edit.php
|
|
||||||
\ingroup adherent
|
|
||||||
\brief Page edition de sa fiche adherent
|
|
||||||
\version $Revision$
|
|
||||||
*/
|
|
||||||
|
|
||||||
require("./pre.inc.php");
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
|
|
||||||
|
|
||||||
$adho = new AdherentOptions($db);
|
|
||||||
|
|
||||||
$langs->load("companies");
|
|
||||||
$langs->load("main");
|
|
||||||
$langs->load("other");
|
|
||||||
$langs->load("users");
|
|
||||||
|
|
||||||
$errmsg='';
|
|
||||||
$num=0;
|
|
||||||
$error=0;
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Actions
|
|
||||||
*/
|
|
||||||
|
|
||||||
if ($action == 'update')
|
|
||||||
{
|
|
||||||
|
|
||||||
if ($_POST["bouton"] == $langs->trans("Save"))
|
|
||||||
{
|
|
||||||
if (isset($user->login)){
|
|
||||||
$adh = new Adherent($db);
|
|
||||||
$adh->fetch_login($user->login);
|
|
||||||
if ($_POST["rowid"] == $adh->id){
|
|
||||||
// user and rowid is the same => good
|
|
||||||
|
|
||||||
// test some values
|
|
||||||
// test si le login existe deja
|
|
||||||
$sql = "SELECT rowid,login FROM ".MAIN_DB_PREFIX."adherent WHERE login='".$user->login."';";
|
|
||||||
$result = $db->query($sql);
|
|
||||||
if ($result) {
|
|
||||||
$num = $db->num_rows();
|
|
||||||
}
|
|
||||||
if (!isset($nom) || !isset($prenom) || $prenom=='' || $nom==''){
|
|
||||||
$error+=1;
|
|
||||||
$errmsg .="Nom et Prenom obligatoires<BR>\n";
|
|
||||||
}
|
|
||||||
if (!isset($email) || $email == '' || !ereg('@',$email)){
|
|
||||||
$error+=1;
|
|
||||||
$errmsg .="Adresse Email invalide<BR>\n";
|
|
||||||
}
|
|
||||||
if ($num !=0){
|
|
||||||
$obj=$db->fetch_object(0);
|
|
||||||
if ($obj->rowid != $adh->id){
|
|
||||||
$error+=1;
|
|
||||||
$errmsg .="Login deja utilise. Veuillez en changer<BR>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (isset($naiss) && $naiss !=''){
|
|
||||||
if (!preg_match("/^\d\d\d\d-\d\d-\d\d$/",$naiss)){
|
|
||||||
$error+=1;
|
|
||||||
$errmsg .="Date de naissance invalide (Format AAAA-MM-JJ)<BR>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!$error){
|
|
||||||
// email a peu pres correct et le login n'existe pas
|
|
||||||
$adh->id = $_POST["rowid"];
|
|
||||||
$adh->prenom = $prenom;
|
|
||||||
$adh->nom = $nom;
|
|
||||||
$adh->societe = $societe;
|
|
||||||
$adh->adresse = $adresse;
|
|
||||||
$adh->amount = $amount;
|
|
||||||
$adh->cp = $cp;
|
|
||||||
$adh->ville = $_POST["ville"];
|
|
||||||
$adh->email = $_POST["email"];
|
|
||||||
// interdiction de la modif du login adherent
|
|
||||||
// $adh->login = $_POST["login"];
|
|
||||||
$adh->login = $adh->login;
|
|
||||||
$adh->pass = $_POST["pass"];
|
|
||||||
$adh->naiss = $_POST["naiss"];
|
|
||||||
$adh->photo = $_POST["photo"];
|
|
||||||
$adh->date = mktime(12, 0 , 0, $remonth, $reday, $reyear);
|
|
||||||
$adh->note = $_POST["note"];
|
|
||||||
$adh->pays = $_POST["pays"];
|
|
||||||
$adh->typeid = $_POST["type"];
|
|
||||||
$adh->note = $_POST["comment"];
|
|
||||||
$adh->morphy = $_POST["morphy"];
|
|
||||||
// recuperation du statut et public
|
|
||||||
$adh->statut = $_POST["statut"];
|
|
||||||
if (isset($public)){
|
|
||||||
$public=1;
|
|
||||||
}else{
|
|
||||||
$public=0;
|
|
||||||
}
|
|
||||||
$adh->public = $public;
|
|
||||||
foreach($_POST as $key => $value){
|
|
||||||
if (ereg("^options_",$key)){
|
|
||||||
$adh->array_options[$key]=$_POST[$key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($adh->update($user->id) )
|
|
||||||
{
|
|
||||||
$adh->send_an_email($email,$conf->adherent->email_edit,$conf->adherent->email_edit_subject);
|
|
||||||
//Header("Location: fiche.php?rowid=$adh->id&action=edit");
|
|
||||||
Header("Location: priv_edit.php");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
Header("Location: priv_edit.php");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//Header("Location: fiche.php?rowid=$rowid&action=edit");
|
|
||||||
Header("Location: priv_edit.php");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
llxHeaderVierge();
|
|
||||||
|
|
||||||
if (isset($_GET["id"]))
|
|
||||||
{
|
|
||||||
$adh = new Adherent($db);
|
|
||||||
$result=$adh->fetch($_GET["id"]);
|
|
||||||
$adh->fetch_optionals($adh->id);
|
|
||||||
// fetch optionals attibutes
|
|
||||||
$adho->fetch_optionals();
|
|
||||||
|
|
||||||
$adht = new AdherentType($db);
|
|
||||||
|
|
||||||
print_titre("Edition de la fiche adhérent de $adh->prenom $adh->nom");
|
|
||||||
|
|
||||||
if ($errmsg != ''){
|
|
||||||
print '<table width="100%">';
|
|
||||||
|
|
||||||
print '<th>Erreur dans le formulaire</th>';
|
|
||||||
print "<tr><td class=\"delete\"><b>$errmsg</b></td></tr>\n";
|
|
||||||
// print "<FONT COLOR=\"red\">$errmsg</FONT>\n";
|
|
||||||
print '</table>';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Formulaire modifications
|
|
||||||
print '<form name="update" action="'.$_SERVER["PHP_SELF"].'" method="post" enctype="multipart/form-data">';
|
|
||||||
print "<input type=\"hidden\" name=\"action\" value=\"update\">";
|
|
||||||
print "<input type=\"hidden\" name=\"rowid\" value=\"$adh->id\">";
|
|
||||||
print "<input type=\"hidden\" name=\"statut\" value=\"".$adh->statut."\">";
|
|
||||||
print "<input type=\"hidden\" name=\"login\" value=\"".$adh->login."\">";
|
|
||||||
print "<input type=\"hidden\" name=\"type\" value=\"".$adh->typeid."\">";
|
|
||||||
print "<input type=\"hidden\" name=\"morphy\" value=\"".$adh->morphy."\">";
|
|
||||||
// print "<input type=\"hidden\" name=\"public\" value=\"".$adh->public."\">";
|
|
||||||
|
|
||||||
$htmls = new Form($db);
|
|
||||||
$caneditfield=1;
|
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
|
||||||
|
|
||||||
// Nom
|
|
||||||
print '<tr><td>'.$langs->trans("Lastname").'*</td><td><input type="text" name="nom" size="40" value="'.$adh->nom.'"></td>';
|
|
||||||
|
|
||||||
// Photo
|
|
||||||
$rowspan=14;
|
|
||||||
$rowspan+=sizeof($adho->attribute_label);
|
|
||||||
print '<td align="center" valign="middle" width="25%" rowspan="'.$rowspan.'">';
|
|
||||||
if (file_exists($conf->adherent->dir_output."/".$adh->id.".jpg"))
|
|
||||||
{
|
|
||||||
print '<img width="100" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=memberphoto&file='.$adh->id.'.jpg">';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print '<img src="'.DOL_URL_ROOT.'/theme/common/nophoto.jpg">';
|
|
||||||
}
|
|
||||||
if ($caneditfield)
|
|
||||||
{
|
|
||||||
print '<br><br><table class="noborder"><tr><td>'.$langs->trans("PhotoFile").'</td></tr>';
|
|
||||||
print '<tr><td>';
|
|
||||||
print '<input type="file" class="flat" name="photo">';
|
|
||||||
print '</td></tr></table>';
|
|
||||||
}
|
|
||||||
print '</td>';
|
|
||||||
print '</tr>';
|
|
||||||
|
|
||||||
// Prenom
|
|
||||||
print '<tr><td width="20%">'.$langs->trans("Firstname").'*</td><td width="35%"><input type="text" name="prenom" size="40" value="'.$adh->prenom.'"></td>';
|
|
||||||
print '</tr>';
|
|
||||||
|
|
||||||
// Login
|
|
||||||
// print '<tr><td>'.$langs->trans("Login").'*</td><td><input type="text" name="login" size="30" value="'.$adh->login.'"></td></tr>';
|
|
||||||
print '<tr><td>'.$langs->trans("Login").'*</td><td>'.$adh->login.'</td></tr>';
|
|
||||||
|
|
||||||
// Password
|
|
||||||
print '<tr><td>'.$langs->trans("Password").'*</td><td><input type="password" name="pass" size="30" value="'.$adh->pass.'"></td></tr>';
|
|
||||||
|
|
||||||
// Société
|
|
||||||
print '<tr><td>'.$langs->trans("Company").'</td><td><input type="text" name="societe" size="40" value="'.$adh->societe.'"></td></tr>';
|
|
||||||
|
|
||||||
// Adresse
|
|
||||||
print '<tr><td>'.$langs->trans("Address").'</td><td>';
|
|
||||||
print '<textarea name="adresse" wrap="soft" cols="40" rows="2">'.$adh->adresse.'</textarea></td></tr>';
|
|
||||||
|
|
||||||
// Cp
|
|
||||||
print '<tr><td>'.$langs->trans("Zip").'/'.$langs->trans("Town").'</td><td><input type="text" name="cp" size="6" value="'.$adh->cp.'"> <input type="text" name="ville" size="32" value="'.$adh->ville.'"></td></tr>';
|
|
||||||
|
|
||||||
// Pays
|
|
||||||
print '<tr><td>'.$langs->trans("Country").'</td><td>';
|
|
||||||
$htmls->select_pays($adh->pays_code?$adh->pays_code:$mysoc->pays_code,'pays');
|
|
||||||
print '</td></tr>';
|
|
||||||
|
|
||||||
// Tel
|
|
||||||
print '<tr><td>'.$langs->trans("PhonePro").'</td><td><input type="text" name="phone" size="20" value="'.$adh->phone.'"></td></tr>';
|
|
||||||
|
|
||||||
// Tel perso
|
|
||||||
print '<tr><td>'.$langs->trans("PhonePerso").'</td><td><input type="text" name="phone_perso" size="20" value="'.$adh->phone_perso.'"></td></tr>';
|
|
||||||
|
|
||||||
// Tel mobile
|
|
||||||
print '<tr><td>'.$langs->trans("PhoneMobile").'</td><td><input type="text" name="phone_mobile" size="20" value="'.$adh->phone_mobile.'"></td></tr>';
|
|
||||||
|
|
||||||
// EMail
|
|
||||||
print '<tr><td>'.$langs->trans("EMail").($conf->global->ADHERENT_MAIL_REQUIRED?'*':'').'</td><td><input type="text" name="email" size="40" value="'.$adh->email.'"></td></tr>';
|
|
||||||
|
|
||||||
// Date naissance
|
|
||||||
print "<tr><td>".$langs->trans("Birthday")."</td><td>\n";
|
|
||||||
$htmls->select_date(($adh->naiss ? $adh->naiss : -1),'naiss','','',1,'update');
|
|
||||||
print "</td></tr>\n";
|
|
||||||
|
|
||||||
// Profil public
|
|
||||||
print "<tr><td>".$langs->trans("Public")."</td><td>\n";
|
|
||||||
print $htmls->selectyesno("public",$adh->public,1);
|
|
||||||
print "</td></tr>\n";
|
|
||||||
|
|
||||||
// Attributs supplémentaires
|
|
||||||
foreach($adho->attribute_label as $key=>$value)
|
|
||||||
{
|
|
||||||
print "<tr><td>$value</td><td><input type=\"text\" name=\"options_$key\" size=\"40\" value=\"".$adh->array_options["options_$key"]."\"></td></tr>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
print '<tr><td colspan="3" align="center">';
|
|
||||||
print '<input type="submit" class="button" name="submit" value="'.$langs->trans("Save").'">';
|
|
||||||
// print ' ';
|
|
||||||
// print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
|
|
||||||
print '</td></tr>';
|
|
||||||
|
|
||||||
print '</table>';
|
|
||||||
|
|
||||||
print '</form>';
|
|
||||||
}
|
|
||||||
|
|
||||||
$db->close();
|
|
||||||
|
|
||||||
llxFooter('$Date$ - $Revision$');
|
|
||||||
?>
|
|
||||||
@ -16,27 +16,49 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
/**
|
||||||
|
\file htdocs/lib/datepicker.php
|
||||||
|
\brief Fichier de gestion de la popup de selection de date eldy
|
||||||
|
\version $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("../../master.inc.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/cotisation.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/cotisation.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/paiement.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/paiement.class.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
|
||||||
|
|
||||||
|
function llxHeaderVierge($title, $head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
print "<html>\n";
|
||||||
|
print "<head>\n";
|
||||||
|
print "<title>".$title."</title>\n";
|
||||||
|
if ($head) print $head."\n";
|
||||||
|
print "</head>\n";
|
||||||
|
print "<body>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
function llxFooter()
|
||||||
|
{
|
||||||
|
print "</body>\n";
|
||||||
|
print "</html>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
$rowid=$_GET["id"];
|
||||||
$adho = new AdherentOptions($db);
|
$adho = new AdherentOptions($db);
|
||||||
|
|
||||||
llxHeader();
|
|
||||||
|
|
||||||
/* ************************************************************************** */
|
/*
|
||||||
/* */
|
* View
|
||||||
/* Edition de la fiche */
|
*/
|
||||||
/* */
|
|
||||||
/*************************************************************************** */
|
llxHeaderVierge("Member edit");
|
||||||
|
|
||||||
// fetch optionals attributes and labels
|
// fetch optionals attributes and labels
|
||||||
$adho->fetch_optionals();
|
$adho->fetch_optionals();
|
||||||
if ($rowid > 0)
|
if ($rowid > 0)
|
||||||
|
|||||||
@ -16,12 +16,34 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
/**
|
||||||
|
\file htdocs/lib/datepicker.php
|
||||||
|
\brief Fichier de gestion de la popup de selection de date eldy
|
||||||
|
\version $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("../../master.inc.php");
|
||||||
|
|
||||||
|
function llxHeaderVierge($title, $head = "")
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs;
|
||||||
|
|
||||||
|
print "<html>\n";
|
||||||
|
print "<head>\n";
|
||||||
|
print "<title>".$title."</title>\n";
|
||||||
|
if ($head) print $head."\n";
|
||||||
|
print "</head>\n";
|
||||||
|
print "<body>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
function llxFooter()
|
||||||
|
{
|
||||||
|
print "</body>\n";
|
||||||
|
print "</html>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
|
|
||||||
@ -40,7 +62,11 @@ $pageprev = $page - 1;
|
|||||||
$pagenext = $page + 1;
|
$pagenext = $page + 1;
|
||||||
|
|
||||||
|
|
||||||
llxHeaderVierge();
|
/*
|
||||||
|
* View
|
||||||
|
*/
|
||||||
|
|
||||||
|
llxHeaderVierge("List of members");
|
||||||
|
|
||||||
|
|
||||||
$sql = "select rowid,prenom,nom, societe, cp,ville,email,naiss,photo";
|
$sql = "select rowid,prenom,nom, societe, cp,ville,email,naiss,photo";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user