123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- <?php
- /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
- * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2018 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2012-2020 Philippe Grand <philippe.grand@atoo-net.com>
- * Copyright (C) 2015-2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
- * Copyright (C) 2021 Waël Almoman <info@almoman.com>
- *
- * 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 3 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, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/adherents/card.php
- * \ingroup member
- * \brief Page of a member
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/subscription.class.php';
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("companies", "bills", "members", "users", "other", "paypal"));
- $action = GETPOST('action', 'aZ09');
- $cancel = GETPOST('cancel', 'alpha');
- $backtopage = GETPOST('backtopage', 'alpha');
- $confirm = GETPOST('confirm', 'alpha');
- $rowid = GETPOST('rowid', 'int');
- $id = GETPOST('id') ?GETPOST('id', 'int') : $rowid;
- $typeid = GETPOST('typeid', 'int');
- $userid = GETPOST('userid', 'int');
- $socid = GETPOST('socid', 'int');
- $ref = GETPOST('ref', 'alpha');
- if (!empty($conf->mailmanspip->enabled)) {
- include_once DOL_DOCUMENT_ROOT.'/mailmanspip/class/mailmanspip.class.php';
- $langs->load('mailmanspip');
- $mailmanspip = new MailmanSpip($db);
- }
- $object = new Adherent($db);
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extrafields->fetch_name_optionals_label($object->table_element);
- $socialnetworks = getArrayOfSocialNetworks();
- // Get object canvas (By default, this is not defined, so standard usage of dolibarr)
- $object->getCanvas($id);
- $canvas = $object->canvas ? $object->canvas : GETPOST("canvas");
- $objcanvas = null;
- if (!empty($canvas)) {
- require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
- $objcanvas = new Canvas($db, $action);
- $objcanvas->getCanvas('adherent', 'membercard', $canvas);
- }
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('membercard', 'globalcard'));
- // Fetch object
- if ($id > 0 || !empty($ref)) {
- // Load member
- $result = $object->fetch($id, $ref);
- // Define variables to know what current user can do on users
- $canadduser = ($user->admin || $user->rights->user->user->creer);
- // Define variables to know what current user can do on properties of user linked to edited member
- if ($object->user_id) {
- // $User is the user who edits, $object->user_id is the id of the related user in the edited member
- $caneditfielduser = ((($user->id == $object->user_id) && $user->rights->user->self->creer)
- || (($user->id != $object->user_id) && $user->rights->user->user->creer));
- $caneditpassworduser = ((($user->id == $object->user_id) && $user->rights->user->self->password)
- || (($user->id != $object->user_id) && $user->rights->user->user->password));
- }
- }
- // Define variables to determine what the current user can do on the members
- $canaddmember = $user->rights->adherent->creer;
- // Define variables to determine what the current user can do on the properties of a member
- if ($id) {
- $caneditfieldmember = $user->rights->adherent->creer;
- }
- // Security check
- $result = restrictedArea($user, 'adherent', $object->id, '', '', 'socid', 'rowid', 0);
- /*
- * Actions
- */
- $parameters = array('id'=>$id, 'rowid'=>$id, 'objcanvas'=>$objcanvas, 'confirm'=>$confirm);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- if (empty($reshook)) {
- $backurlforlist = DOL_URL_ROOT.'/adherents/list.php';
- if (empty($backtopage) || ($cancel && empty($id))) {
- if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
- if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
- $backtopage = $backurlforlist;
- } else {
- $backtopage = DOL_URL_ROOT.'/adherents/card.php?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
- }
- }
- }
- if ($cancel) {
- if (!empty($backtopageforcancel)) {
- header("Location: ".$backtopageforcancel);
- exit;
- } elseif (!empty($backtopage)) {
- header("Location: ".$backtopage);
- exit;
- }
- $action = '';
- }
- if ($action == 'setuserid' && ($user->rights->user->self->creer || $user->rights->user->user->creer)) {
- $error = 0;
- if (empty($user->rights->user->user->creer)) { // If can edit only itself user, we can link to itself only
- if ($userid != $user->id && $userid != $object->user_id) {
- $error++;
- setEventMessages($langs->trans("ErrorUserPermissionAllowsToLinksToItselfOnly"), null, 'errors');
- }
- }
- if (!$error) {
- if ($userid != $object->user_id) { // If link differs from currently in database
- $result = $object->setUserId($userid);
- if ($result < 0) {
- dol_print_error($object->db, $object->error);
- }
- $action = '';
- }
- }
- }
- if ($action == 'setsocid') {
- $error = 0;
- if (!$error) {
- if ($socid != $object->socid) { // If link differs from currently in database
- $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."adherent";
- $sql .= " WHERE socid = ".((int) $socid);
- $sql .= " AND entity = ".$conf->entity;
- $resql = $db->query($sql);
- if ($resql) {
- $obj = $db->fetch_object($resql);
- if ($obj && $obj->rowid > 0) {
- $othermember = new Adherent($db);
- $othermember->fetch($obj->rowid);
- $thirdparty = new Societe($db);
- $thirdparty->fetch($socid);
- $error++;
- setEventMessages($langs->trans("ErrorMemberIsAlreadyLinkedToThisThirdParty", $othermember->getFullName($langs), $othermember->login, $thirdparty->name), null, 'errors');
- }
- }
- if (!$error) {
- $result = $object->setThirdPartyId($socid);
- if ($result < 0) {
- dol_print_error($object->db, $object->error);
- }
- $action = '';
- }
- }
- }
- }
- // Create user from a member
- if ($action == 'confirm_create_user' && $confirm == 'yes' && $user->rights->user->user->creer) {
- if ($result > 0) {
- // Creation user
- $nuser = new User($db);
- $tmpuser = dol_clone($object);
- if (GETPOST('internalorexternal', 'aZ09') == 'internal') {
- $tmpuser->fk_soc = 0;
- }
- $result = $nuser->create_from_member($tmpuser, GETPOST('login', 'alphanohtml'));
- if ($result < 0) {
- $langs->load("errors");
- setEventMessages($langs->trans($nuser->error), null, 'errors');
- } else {
- setEventMessages($langs->trans("NewUserCreated", $nuser->login), null, 'mesgs');
- $action = '';
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- // Create third party from a member
- if ($action == 'confirm_create_thirdparty' && $confirm == 'yes' && $user->rights->societe->creer) {
- if ($result > 0) {
- // User creation
- $company = new Societe($db);
- $result = $company->create_from_member($object, GETPOST('companyname', 'alpha'), GETPOST('companyalias', 'alpha'));
- if ($result < 0) {
- $langs->load("errors");
- setEventMessages($langs->trans($company->error), null, 'errors');
- setEventMessages($company->error, $company->errors, 'errors');
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- if ($action == 'update' && !$cancel && $user->rights->adherent->creer) {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $birthdate = '';
- if (GETPOST("birthday", 'int') && GETPOST("birthmonth", 'int') && GETPOST("birthyear", 'int')) {
- $birthdate = dol_mktime(12, 0, 0, GETPOST("birthmonth", 'int'), GETPOST("birthday", 'int'), GETPOST("birthyear", 'int'));
- }
- $lastname = GETPOST("lastname", 'alphanohtml');
- $firstname = GETPOST("firstname", 'alphanohtml');
- $gender = GETPOST("gender", 'alphanohtml');
- $societe = GETPOST("societe", 'alphanohtml');
- $morphy = GETPOST("morphy", 'alphanohtml');
- $login = GETPOST("login", 'alphanohtml');
- if ($morphy != 'mor' && empty($lastname)) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Lastname")), null, 'errors');
- }
- if ($morphy != 'mor' && (!isset($firstname) || $firstname == '')) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Firstname")), null, 'errors');
- }
- if ($morphy == 'mor' && empty($societe)) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Company")), null, 'errors');
- }
- // Check if the login already exists
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- if (empty($login)) {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Login")), null, 'errors');
- }
- }
- // Create new object
- if ($result > 0 && !$error) {
- $object->oldcopy = clone $object;
- // Change values
- $object->civility_id = trim(GETPOST("civility_id", 'alphanohtml'));
- $object->firstname = trim(GETPOST("firstname", 'alphanohtml'));
- $object->lastname = trim(GETPOST("lastname", 'alphanohtml'));
- $object->gender = trim(GETPOST("gender", 'alphanohtml'));
- $object->login = trim(GETPOST("login", 'alphanohtml'));
- $object->pass = trim(GETPOST("pass", 'alpha'));
- $object->societe = trim(GETPOST("societe", 'alphanohtml')); // deprecated
- $object->company = trim(GETPOST("societe", 'alphanohtml'));
- $object->address = trim(GETPOST("address", 'alphanohtml'));
- $object->zip = trim(GETPOST("zipcode", 'alphanohtml'));
- $object->town = trim(GETPOST("town", 'alphanohtml'));
- $object->state_id = GETPOST("state_id", 'int');
- $object->country_id = GETPOST("country_id", 'int');
- $object->phone = trim(GETPOST("phone", 'alpha'));
- $object->phone_perso = trim(GETPOST("phone_perso", 'alpha'));
- $object->phone_mobile = trim(GETPOST("phone_mobile", 'alpha'));
- $object->email = preg_replace('/\s+/', '', GETPOST("member_email", 'alpha'));
- $object->url = trim(GETPOST('member_url', 'custom', 0, FILTER_SANITIZE_URL));
- $object->socialnetworks = array();
- foreach ($socialnetworks as $key => $value) {
- if (GETPOSTISSET($key) && GETPOST($key, 'alphanohtml') != '') {
- $object->socialnetworks[$key] = trim(GETPOST($key, 'alphanohtml'));
- }
- }
- //$object->skype = trim(GETPOST("skype", 'alpha'));
- //$object->twitter = trim(GETPOST("twitter", 'alpha'));
- //$object->facebook = trim(GETPOST("facebook", 'alpha'));
- //$object->linkedin = trim(GETPOST("linkedin", 'alpha'));
- $object->birth = $birthdate;
- $object->typeid = GETPOST("typeid", 'int');
- //$object->note = trim(GETPOST("comment","alpha"));
- $object->morphy = GETPOST("morphy", 'alpha');
- if (GETPOST('deletephoto', 'alpha')) {
- $object->photo = '';
- } elseif (!empty($_FILES['photo']['name'])) {
- $object->photo = dol_sanitizeFileName($_FILES['photo']['name']);
- }
- // Get status and public property
- $object->statut = GETPOST("statut", 'alpha');
- $object->public = GETPOST("public", 'alpha');
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost(null, $object, '@GETPOSTISSET');
- if ($ret < 0) {
- $error++;
- }
- // Check if we need to also synchronize user information
- $nosyncuser = 0;
- if ($object->user_id) { // If linked to a user
- if ($user->id != $object->user_id && empty($user->rights->user->user->creer)) {
- $nosyncuser = 1; // Disable synchronizing
- }
- }
- // Check if we need to also synchronize password information
- $nosyncuserpass = 0;
- if ($object->user_id) { // If linked to a user
- if ($user->id != $object->user_id && empty($user->rights->user->user->password)) {
- $nosyncuserpass = 1; // Disable synchronizing
- }
- }
- if (!$error) {
- $result = $object->update($user, 0, $nosyncuser, $nosyncuserpass);
- if ($result >= 0 && !count($object->errors)) {
- $categories = GETPOST('memcats', 'array');
- $object->setCategories($categories);
- // Logo/Photo save
- $dir = $conf->adherent->dir_output.'/'.get_exdir(0, 0, 0, 1, $object, 'member').'/photos';
- $file_OK = is_uploaded_file($_FILES['photo']['tmp_name']);
- if ($file_OK) {
- if (GETPOST('deletephoto')) {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $fileimg = $conf->adherent->dir_output.'/'.get_exdir(0, 0, 0, 1, $object, 'member').'/photos/'.$object->photo;
- $dirthumbs = $conf->adherent->dir_output.'/'.get_exdir(0, 0, 0, 1, $object, 'member').'/photos/thumbs';
- dol_delete_file($fileimg);
- dol_delete_dir_recursive($dirthumbs);
- }
- if (image_format_supported($_FILES['photo']['name']) > 0) {
- dol_mkdir($dir);
- if (@is_dir($dir)) {
- $newfile = $dir.'/'.dol_sanitizeFileName($_FILES['photo']['name']);
- if (!dol_move_uploaded_file($_FILES['photo']['tmp_name'], $newfile, 1, 0, $_FILES['photo']['error']) > 0) {
- setEventMessages($langs->trans("ErrorFailedToSaveFile"), null, 'errors');
- } else {
- // Create thumbs
- $object->addThumbs($newfile);
- }
- }
- } else {
- setEventMessages("ErrorBadImageFormat", null, 'errors');
- }
- } else {
- switch ($_FILES['photo']['error']) {
- case 1: //uploaded file exceeds the upload_max_filesize directive in php.ini
- case 2: //uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form
- $errors[] = "ErrorFileSizeTooLarge";
- break;
- case 3: //uploaded file was only partially uploaded
- $errors[] = "ErrorFilePartiallyUploaded";
- break;
- }
- }
- $rowid = $object->id;
- $id = $object->id;
- $action = '';
- if (!empty($backtopage)) {
- header("Location: ".$backtopage);
- exit;
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- $action = '';
- }
- } else {
- $action = 'edit';
- }
- } else {
- $action = 'edit';
- }
- }
- if ($action == 'add' && $user->rights->adherent->creer) {
- if ($canvas) {
- $object->canvas = $canvas;
- }
- $birthdate = '';
- if (GETPOSTISSET("birthday") && GETPOST("birthday") && GETPOSTISSET("birthmonth") && GETPOST("birthmonth") && GETPOSTISSET("birthyear") && GETPOST("birthyear")) {
- $birthdate = dol_mktime(12, 0, 0, GETPOST("birthmonth", 'int'), GETPOST("birthday", 'int'), GETPOST("birthyear", 'int'));
- }
- $datesubscription = '';
- if (GETPOSTISSET("reday") && GETPOSTISSET("remonth") && GETPOSTISSET("reyear")) {
- $datesubscription = dol_mktime(12, 0, 0, GETPOST("remonth", 'int'), GETPOST("reday", "int"), GETPOST("reyear", "int"));
- }
- $typeid = GETPOST("typeid", 'int');
- $civility_id = GETPOST("civility_id", 'alphanohtml');
- $lastname = GETPOST("lastname", 'alphanohtml');
- $firstname = GETPOST("firstname", 'alphanohtml');
- $gender = GETPOST("gender", 'alphanohtml');
- $societe = GETPOST("societe", 'alphanohtml');
- $address = GETPOST("address", 'alphanohtml');
- $zip = GETPOST("zipcode", 'alphanohtml');
- $town = GETPOST("town", 'alphanohtml');
- $state_id = GETPOST("state_id", 'int');
- $country_id = GETPOST("country_id", 'int');
- $phone = GETPOST("phone", 'alpha');
- $phone_perso = GETPOST("phone_perso", 'alpha');
- $phone_mobile = GETPOST("phone_mobile", 'alpha');
- // $skype=GETPOST("member_skype", 'alpha');
- // $twitter=GETPOST("member_twitter", 'alpha');
- // $facebook=GETPOST("member_facebook", 'alpha');
- // $linkedin=GETPOST("member_linkedin", 'alpha');
- $email = preg_replace('/\s+/', '', GETPOST("member_email", 'alpha'));
- $url = trim(GETPOST('url', 'custom', 0, FILTER_SANITIZE_URL));
- $login = GETPOST("member_login", 'alphanohtml');
- $pass = GETPOST("password", 'alpha');
- $photo = GETPOST("photo", 'alpha');
- $morphy = GETPOST("morphy", 'alphanohtml');
- $public = GETPOST("public", 'alphanohtml');
- $userid = GETPOST("userid", 'int');
- $socid = GETPOST("socid", 'int');
- $object->civility_id = $civility_id;
- $object->firstname = $firstname;
- $object->lastname = $lastname;
- $object->gender = $gender;
- $object->societe = $societe; // deprecated
- $object->company = $societe;
- $object->address = $address;
- $object->zip = $zip;
- $object->town = $town;
- $object->state_id = $state_id;
- $object->country_id = $country_id;
- $object->phone = $phone;
- $object->phone_perso = $phone_perso;
- $object->phone_mobile = $phone_mobile;
- $object->socialnetworks = array();
- if (!empty($conf->socialnetworks->enabled)) {
- foreach ($socialnetworks as $key => $value) {
- if (GETPOSTISSET($key) && GETPOST($key, 'alphanohtml') != '') {
- $object->socialnetworks[$key] = GETPOST("member_".$key, 'alphanohtml');
- }
- }
- }
- // $object->skype = $skype;
- // $object->twitter = $twitter;
- // $object->facebook = $facebook;
- // $object->linkedin = $linkedin;
- $object->email = $email;
- $object->url = $url;
- $object->login = $login;
- $object->pass = $pass;
- $object->birth = $birthdate;
- $object->photo = $photo;
- $object->typeid = $typeid;
- //$object->note = $comment;
- $object->morphy = $morphy;
- $object->user_id = $userid;
- $object->socid = $socid;
- $object->public = $public;
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost(null, $object);
- if ($ret < 0) {
- $error++;
- }
- // Check parameters
- if (empty($morphy) || $morphy == "-1") {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("MemberNature")), null, 'errors');
- }
- // Tests if the login already exists
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- if (empty($login)) {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Login")), null, 'errors');
- } else {
- $sql = "SELECT login FROM ".MAIN_DB_PREFIX."adherent WHERE login='".$db->escape($login)."'";
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- }
- if ($num) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorLoginAlreadyExists", $login), null, 'errors');
- }
- }
- if (empty($pass)) {
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Password")), null, 'errors');
- }
- }
- if ($morphy == 'mor' && empty($societe)) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Company")), null, 'errors');
- }
- if ($morphy != 'mor' && empty($lastname)) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Lastname")), null, 'errors');
- }
- if ($morphy != 'mor' && (!isset($firstname) || $firstname == '')) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Firstname")), null, 'errors');
- }
- if (!($typeid > 0)) { // Keep () before !
- $error++;
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type")), null, 'errors');
- }
- if (!empty($conf->global->ADHERENT_MAIL_REQUIRED) && !isValidEMail($email)) {
- $error++;
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorBadEMail", $email), null, 'errors');
- }
- if (!empty($object->url) && !isValidUrl($object->url)) {
- $langs->load("errors");
- setEventMessages('', $langs->trans("ErrorBadUrl", $object->url), 'errors');
- }
- $public = 0;
- if (isset($public)) {
- $public = 1;
- }
- if (!$error) {
- $db->begin();
- // Email about right and login does not exist
- $result = $object->create($user);
- if ($result > 0) {
- // Foundation categories
- $memcats = GETPOST('memcats', 'array');
- $object->setCategories($memcats);
- $db->commit();
- $rowid = $object->id;
- $id = $object->id;
- } else {
- $db->rollback();
- if ($object->error) {
- setEventMessages($object->error, $object->errors, 'errors');
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- // Auto-create thirdparty on member creation
- if (!empty($conf->global->ADHERENT_DEFAULT_CREATE_THIRDPARTY)) {
- if ($result > 0) {
- // User creation
- $company = new Societe($db);
- $companyalias = '';
- $fullname = $object->getFullName($langs);
- if ($object->morphy == 'mor') {
- $companyname = $object->company;
- if (!empty($fullname)) {
- $companyalias = $fullname;
- }
- } else {
- $companyname = $fullname;
- if (!empty($object->company)) {
- $companyalias = $object->company;
- }
- }
- $result = $company->create_from_member($object, $companyname, $companyalias);
- if ($result < 0) {
- $langs->load("errors");
- setEventMessages($langs->trans($company->error), null, 'errors');
- setEventMessages($company->error, $company->errors, 'errors');
- }
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- $action = ($result < 0 || !$error) ? '' : 'create';
- }
- if ($user->rights->adherent->supprimer && $action == 'confirm_delete' && $confirm == 'yes') {
- $result = $object->delete($id, $user);
- if ($result > 0) {
- if (!empty($backtopage)) {
- header("Location: ".$backtopage);
- exit;
- } else {
- header("Location: list.php");
- exit;
- }
- } else {
- $errmesg = $object->error;
- }
- }
- if ($user->rights->adherent->creer && $action == 'confirm_valid' && $confirm == 'yes') {
- $error = 0;
- $db->begin();
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $result = $object->validate($user);
- if ($result >= 0 && !count($object->errors)) {
- // Send confirmation email (according to parameters of member type. Otherwise generic)
- if ($object->email && GETPOST("send_mail")) {
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members", "companies", "install", "other"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_MEMBER_VALIDATION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- if (empty($labeltouse) || (int) $labeltouse === -1) {
- //fallback on the old configuration.
- setEventMessages('WarningMandatorySetupNotComplete', null, 'errors');
- $error++;
- } else {
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnValid()), $substitutionarray, $outputlangs);
- $moreinheader = 'X-Dolibarr-Info: send_an_email by adherents/card.php'."\r\n";
- $result = $object->send_an_email($texttosend, $subjecttosend, array(), array(), array(), "", "", 0, -1, '', $moreinheader);
- if ($result < 0) {
- $error++;
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- } else {
- $error++;
- if ($object->error) {
- setEventMessages($object->error, $object->errors, 'errors');
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- if (!$error) {
- $db->commit();
- } else {
- $db->rollback();
- }
- $action = '';
- }
- if ($user->rights->adherent->supprimer && $action == 'confirm_resiliate') {
- $error = 0;
- if ($confirm == 'yes') {
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $result = $object->resiliate($user);
- if ($result >= 0 && !count($object->errors)) {
- if ($object->email && GETPOST("send_mail")) {
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members", "companies", "install", "other"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_CANCELATION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- if (empty($labeltouse) || (int) $labeltouse === -1) {
- //fallback on the old configuration.
- setEventMessages('WarningMandatorySetupNotComplete', null, 'errors');
- $error++;
- } else {
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnResiliate()), $substitutionarray, $outputlangs);
- $moreinheader = 'X-Dolibarr-Info: send_an_email by adherents/card.php'."\r\n";
- $result = $object->send_an_email($texttosend, $subjecttosend, array(), array(), array(), "", "", 0, -1, '', $moreinheader);
- if ($result < 0) {
- $error++;
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- } else {
- $error++;
- if ($object->error) {
- setEventMessages($object->error, $object->errors, 'errors');
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $action = '';
- }
- }
- if (!empty($backtopage) && !$error) {
- header("Location: ".$backtopage);
- exit;
- }
- }
- if ($user->rights->adherent->supprimer && $action == 'confirm_exclude') {
- $error = 0;
- if ($confirm == 'yes') {
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $result = $object->exclude($user);
- if ($result >= 0 && !count($object->errors)) {
- if ($object->email && GETPOST("send_mail")) {
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members", "companies", "install", "other"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_EXCLUSION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- if (empty($labeltouse) || (int) $labeltouse === -1) {
- //fallback on the old configuration.
- setEventMessages('WarningMandatorySetupNotComplete', null, 'errors');
- $error++;
- } else {
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnExclude()), $substitutionarray, $outputlangs);
- $moreinheader = 'X-Dolibarr-Info: send_an_email by adherents/card.php'."\r\n";
- $result = $object->send_an_email($texttosend, $subjecttosend, array(), array(), array(), "", "", 0, -1, '', $moreinheader);
- if ($result < 0) {
- $error++;
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- }
- } else {
- $error++;
- if ($object->error) {
- setEventMessages($object->error, $object->errors, 'errors');
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $action = '';
- }
- }
- if (!empty($backtopage) && !$error) {
- header("Location: ".$backtopage);
- exit;
- }
- }
- // SPIP Management
- if ($user->rights->adherent->supprimer && $action == 'confirm_del_spip' && $confirm == 'yes') {
- if (!count($object->errors)) {
- if (!$mailmanspip->del_to_spip($object)) {
- setEventMessages($langs->trans('DeleteIntoSpipError').': '.$mailmanspip->error, null, 'errors');
- }
- }
- }
- if ($user->rights->adherent->creer && $action == 'confirm_add_spip' && $confirm == 'yes') {
- if (!count($object->errors)) {
- if (!$mailmanspip->add_to_spip($object)) {
- setEventMessages($langs->trans('AddIntoSpipError').': '.$mailmanspip->error, null, 'errors');
- }
- }
- }
- // Actions when printing a doc from card
- include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
- // Actions to build doc
- $upload_dir = $conf->adherent->dir_output;
- $permissiontoadd = $user->rights->adherent->creer;
- include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
- // Actions to send emails
- $triggersendname = 'MEMBER_SENTBYMAIL';
- $paramname = 'id';
- $mode = 'emailfrommember';
- $trackid = 'mem'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
- }
- /*
- * View
- */
- $form = new Form($db);
- $formfile = new FormFile($db);
- $formcompany = new FormCompany($db);
- $title = $langs->trans("Member")." - ".$langs->trans("Card");
- $help_url = 'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder';
- llxHeader('', $title, $help_url);
- $countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';
- if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
- // -----------------------------------------
- // When used with CANVAS
- // -----------------------------------------
- if (empty($object->error) && $id) {
- $object = new Adherent($db);
- $result = $object->fetch($id);
- if ($result <= 0) {
- dol_print_error('', $object->error);
- }
- }
- $objcanvas->assign_values($action, $object->id, $object->ref); // Set value for templates
- $objcanvas->display_canvas($action); // Show template
- } else {
- // -----------------------------------------
- // When used in standard mode
- // -----------------------------------------
- // Create mode
- if ($action == 'create') {
- $object->canvas = $canvas;
- $object->state_id = GETPOST('state_id', 'int');
- // We set country_id, country_code and country for the selected country
- $object->country_id = GETPOST('country_id', 'int') ? GETPOST('country_id', 'int') : $mysoc->country_id;
- if ($object->country_id) {
- $tmparray = getCountry($object->country_id, 'all');
- $object->country_code = $tmparray['code'];
- $object->country = $tmparray['label'];
- }
- $soc = new Societe($db);
- if (!empty($socid)) {
- if ($socid > 0) {
- $soc->fetch($socid);
- }
- if (!($soc->id > 0)) {
- $langs->load("errors");
- print($langs->trans('ErrorRecordNotFound'));
- exit;
- }
- }
- $adht = new AdherentType($db);
- print load_fiche_titre($langs->trans("NewMember"), '', $object->picto);
- if ($conf->use_javascript_ajax) {
- print "\n".'<script type="text/javascript">'."\n";
- print 'jQuery(document).ready(function () {
- jQuery("#selectcountry_id").change(function() {
- document.formsoc.action.value="create";
- document.formsoc.submit();
- });
- function initfieldrequired() {
- jQuery("#tdcompany").removeClass("fieldrequired");
- jQuery("#tdlastname").removeClass("fieldrequired");
- jQuery("#tdfirstname").removeClass("fieldrequired");
- if (jQuery("#morphy").val() == \'mor\') {
- jQuery("#tdcompany").addClass("fieldrequired");
- }
- if (jQuery("#morphy").val() == \'phy\') {
- jQuery("#tdlastname").addClass("fieldrequired");
- jQuery("#tdfirstname").addClass("fieldrequired");
- }
- }
- jQuery("#morphy").change(function() {
- initfieldrequired();
- });
- initfieldrequired();
- })';
- print '</script>'."\n";
- }
- print '<form name="formsoc" action="'.$_SERVER["PHP_SELF"].'" method="post" enctype="multipart/form-data">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="add">';
- print '<input type="hidden" name="socid" value="'.$socid.'">';
- if ($backtopage) {
- print '<input type="hidden" name="backtopage" value="'.($backtopage != '1' ? $backtopage : $_SERVER["HTTP_REFERER"]).'">';
- }
- print dol_get_fiche_head('');
- print '<table class="border centpercent">';
- print '<tbody>';
- // Login
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- print '<tr><td><span class="fieldrequired">'.$langs->trans("Login").' / '.$langs->trans("Id").'</span></td><td><input type="text" name="member_login" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET("member_login") ? GETPOST("member_login", 'alphanohtml', 2) : $object->login).'" autofocus="autofocus"></td></tr>';
- }
- // Password
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
- $generated_password = getRandomPassword(false);
- print '<tr><td><span class="fieldrequired">'.$langs->trans("Password").'</span></td><td>';
- print '<input type="text" class="minwidth300" maxlength="50" name="password" value="'.$generated_password.'">';
- print '</td></tr>';
- }
- // Type
- print '<tr><td class="fieldrequired">'.$langs->trans("MemberType").'</td><td>';
- $listetype = $adht->liste_array(1);
- if (count($listetype)) {
- print $form->selectarray("typeid", $listetype, (GETPOST('typeid', 'int') ? GETPOST('typeid', 'int') : $typeid), (count($listetype) > 1 ? 1 : 0), 0, 0, '', 0, 0, 0, '', '', 1);
- } else {
- print '<span class="error">'.$langs->trans("NoTypeDefinedGoToSetup").'</span>';
- }
- print "</td>\n";
- // Morphy
- $morphys["phy"] = $langs->trans("Physical");
- $morphys["mor"] = $langs->trans("Moral");
- print '<tr><td class="fieldrequired">'.$langs->trans("MemberNature")."</td><td>\n";
- print $form->selectarray("morphy", $morphys, (GETPOST('morphy', 'alpha') ?GETPOST('morphy', 'alpha') : $object->morphy), 1, 0, 0, '', 0, 0, 0, '', '', 1);
- print "</td>\n";
- // Company
- print '<tr><td id="tdcompany">'.$langs->trans("Company").'</td><td><input type="text" name="societe" class="minwidth300" maxlength="128" value="'.(GETPOSTISSET('societe') ? GETPOST('societe', 'alphanohtml') : $soc->name).'"></td></tr>';
- // Civility
- print '<tr><td>'.$langs->trans("UserTitle").'</td><td>';
- print $formcompany->select_civility(GETPOST('civility_id', 'int') ? GETPOST('civility_id', 'int') : $object->civility_id, 'civility_id', 'maxwidth150', 1).'</td>';
- print '</tr>';
- // Lastname
- print '<tr><td id="tdlastname">'.$langs->trans("Lastname").'</td><td><input type="text" name="lastname" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET('lastname') ? GETPOST('lastname', 'alphanohtml') : $object->lastname).'"></td>';
- print '</tr>';
- // Firstname
- print '<tr><td id="tdfirstname">'.$langs->trans("Firstname").'</td><td><input type="text" name="firstname" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET('firstname') ? GETPOST('firstname', 'alphanohtml') : $object->firstname).'"></td>';
- print '</tr>';
- // Gender
- print '<tr><td>'.$langs->trans("Gender").'</td>';
- print '<td>';
- $arraygender = array('man'=>$langs->trans("Genderman"), 'woman'=>$langs->trans("Genderwoman"), 'other'=>$langs->trans("Genderother"));
- print $form->selectarray('gender', $arraygender, GETPOST('gender', 'alphanohtml'), 1, 0, 0, '', 0, 0, 0, '', '', 1);
- print '</td></tr>';
- // EMail
- print '<tr><td>'.(!empty($conf->global->ADHERENT_MAIL_REQUIRED) ? '<span class="fieldrequired">' : '').$langs->trans("EMail").(!empty($conf->global->ADHERENT_MAIL_REQUIRED) ? '</span>' : '').'</td>';
- print '<td>'.img_picto('', 'object_email').' <input type="text" name="member_email" class="minwidth300" maxlength="255" value="'.(GETPOSTISSET('member_email') ? GETPOST('member_email', 'alpha') : $soc->email).'"></td></tr>';
- // Website
- print '<tr><td>'.$form->editfieldkey('Web', 'member_url', '', $object, 0).'</td>';
- print '<td>'.img_picto('', 'globe').' <input type="text" class="maxwidth500 widthcentpercentminusx" name="member_url" id="member_url" value="'.$object->url.'"></td></tr>';
- // Address
- print '<tr><td class="tdtop">'.$langs->trans("Address").'</td><td>';
- print '<textarea name="address" wrap="soft" class="quatrevingtpercent" rows="2">'.(GETPOSTISSET('address') ?GETPOST('address', 'alphanohtml') : $soc->address).'</textarea>';
- print '</td></tr>';
- // Zip / Town
- print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td>';
- print $formcompany->select_ziptown((GETPOSTISSET('zipcode') ? GETPOST('zipcode', 'alphanohtml') : $soc->zip), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 6);
- print ' ';
- print $formcompany->select_ziptown((GETPOSTISSET('town') ? GETPOST('town', 'alphanohtml') : $soc->town), 'town', array('zipcode', 'selectcountry_id', 'state_id'));
- print '</td></tr>';
- // Country
- if (empty($soc->country_id)) {
- $soc->country_id = $mysoc->country_id;
- $soc->country_code = $mysoc->country_code;
- $soc->state_id = $mysoc->state_id;
- }
- print '<tr><td>'.$langs->trans('Country').'</td><td>';
- print img_picto('', 'country', 'class="pictofixedwidth"');
- print $form->select_country(GETPOSTISSET('country_id') ? GETPOST('country_id', 'alpha') : $soc->country_id, 'country_id');
- if ($user->admin) {
- print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
- }
- print '</td></tr>';
- // State
- if (empty($conf->global->MEMBER_DISABLE_STATE)) {
- print '<tr><td>'.$langs->trans('State').'</td><td>';
- if ($soc->country_id) {
- print img_picto('', 'state', 'class="pictofixedwidth"');
- print $formcompany->select_state(GETPOSTISSET('state_id') ? GETPOST('state_id', 'int') : $soc->state_id, $soc->country_code);
- } else {
- print $countrynotdefined;
- }
- print '</td></tr>';
- }
- // Pro phone
- print '<tr><td>'.$langs->trans("PhonePro").'</td>';
- print '<td>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').'<input type="text" name="phone" size="20" value="'.(GETPOSTISSET('phone') ? GETPOST('phone', 'alpha') : $soc->phone).'"></td></tr>';
- // Personal phone
- print '<tr><td>'.$langs->trans("PhonePerso").'</td>';
- print '<td>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').'<input type="text" name="phone_perso" size="20" value="'.(GETPOSTISSET('phone_perso') ? GETPOST('phone_perso', 'alpha') : $object->phone_perso).'"></td></tr>';
- // Mobile phone
- print '<tr><td>'.$langs->trans("PhoneMobile").'</td>';
- print '<td>'.img_picto('', 'object_phoning_mobile', 'class="pictofixedwidth"').'<input type="text" name="phone_mobile" size="20" value="'.(GETPOSTISSET('phone_mobile') ? GETPOST('phone_mobile', 'alpha') : $object->phone_mobile).'"></td></tr>';
- if (!empty($conf->socialnetworks->enabled)) {
- foreach ($socialnetworks as $key => $value) {
- if (!$value['active']) {
- break;
- }
- $val = (GETPOSTISSET('member_'.$key) ? GETPOST('member_'.$key, 'alpha') : (empty($object->socialnetworks[$key]) ? '' : $object->socialnetworks[$key]));
- print '<tr><td>'.$langs->trans($value['label']).'</td><td><input type="text" name="member_'.$key.'" size="40" value="'.$val.'"></td></tr>';
- }
- }
- // Birth Date
- print "<tr><td>".$langs->trans("DateOfBirth")."</td><td>\n";
- print $form->selectDate(($object->birth ? $object->birth : -1), 'birth', '', '', 1, 'formsoc');
- print "</td></tr>\n";
- // Public profil
- print "<tr><td>".$langs->trans("Public")."</td><td>\n";
- print $form->selectyesno("public", $object->public, 1);
- print "</td></tr>\n";
- // Categories
- if (!empty($conf->categorie->enabled) && !empty($user->rights->categorie->lire)) {
- print '<tr><td>'.$form->editfieldkey("Categories", 'memcats', '', $object, 0).'</td><td>';
- $cate_arbo = $form->select_all_categories(Categorie::TYPE_MEMBER, null, 'parent', null, null, 1);
- print img_picto('', 'category').$form->multiselectarray('memcats', $cate_arbo, GETPOST('memcats', 'array'), null, null, 'quatrevingtpercent widthcentpercentminusx', 0, 0);
- print "</td></tr>";
- }
- // Other attributes
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
- print '<tbody>';
- print "</table>\n";
- print dol_get_fiche_end();
- print $form->buttonsSaveCancel("AddMember");
- print "</form>\n";
- }
- // Edit mode
- if ($action == 'edit') {
- $res = $object->fetch($id);
- if ($res < 0) {
- dol_print_error($db, $object->error); exit;
- }
- $res = $object->fetch_optionals();
- if ($res < 0) {
- dol_print_error($db); exit;
- }
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- // We set country_id, and country_code, country of the chosen country
- $country = GETPOST('country', 'int');
- if (!empty($country) || $object->country_id) {
- $sql = "SELECT rowid, code, label from ".MAIN_DB_PREFIX."c_country where rowid = ".(!empty($country) ? $country : $object->country_id);
- $resql = $db->query($sql);
- if ($resql) {
- $obj = $db->fetch_object($resql);
- } else {
- dol_print_error($db);
- }
- $object->country_id = $obj->rowid;
- $object->country_code = $obj->code;
- $object->country = $langs->trans("Country".$obj->code) ? $langs->trans("Country".$obj->code) : $obj->label;
- }
- $head = member_prepare_head($object);
- if ($conf->use_javascript_ajax) {
- print "\n".'<script type="text/javascript">';
- print 'jQuery(document).ready(function () {
- jQuery("#selectcountry_id").change(function() {
- document.formsoc.action.value="edit";
- document.formsoc.submit();
- });
- function initfieldrequired() {
- jQuery("#tdcompany").removeClass("fieldrequired");
- jQuery("#tdlastname").removeClass("fieldrequired");
- jQuery("#tdfirstname").removeClass("fieldrequired");
- if (jQuery("#morphy").val() == \'mor\') {
- jQuery("#tdcompany").addClass("fieldrequired");
- }
- if (jQuery("#morphy").val() == \'phy\') {
- jQuery("#tdlastname").addClass("fieldrequired");
- jQuery("#tdfirstname").addClass("fieldrequired");
- }
- }
- jQuery("#morphy").change(function() {
- initfieldrequired();
- });
- initfieldrequired();
- })';
- print '</script>'."\n";
- }
- print '<form name="formsoc" action="'.$_SERVER["PHP_SELF"].'" method="post" enctype="multipart/form-data">';
- print '<input type="hidden" name="token" value="'.newToken().'" />';
- print '<input type="hidden" name="action" value="update" />';
- print '<input type="hidden" name="rowid" value="'.$id.'" />';
- print '<input type="hidden" name="statut" value="'.$object->statut.'" />';
- if ($backtopage) {
- print '<input type="hidden" name="backtopage" value="'.($backtopage != '1' ? $backtopage : $_SERVER["HTTP_REFERER"]).'">';
- }
- print dol_get_fiche_head($head, 'general', $langs->trans("Member"), 0, 'user');
- print '<table class="border centpercent">';
- // Ref
- print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td class="valeur">'.$object->ref.'</td></tr>';
- // Login
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- print '<tr><td><span class="fieldrequired">'.$langs->trans("Login").' / '.$langs->trans("Id").'</span></td><td><input type="text" name="login" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET("login") ? GETPOST("login", 'alphanohtml', 2) : $object->login).'"></td></tr>';
- }
- // Password
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- print '<tr><td class="fieldrequired">'.$langs->trans("Password").'</td><td><input type="password" name="pass" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET("pass") ? GETPOST("pass", '', 2) : $object->pass).'"></td></tr>';
- }
- // Morphy
- $morphys["phy"] = $langs->trans("Physical");
- $morphys["mor"] = $langs->trans("Moral");
- print '<tr><td><span class="fieldrequired">'.$langs->trans("MemberNature").'</span></td><td>';
- print $form->selectarray("morphy", $morphys, (GETPOSTISSET("morphy") ? GETPOST("morphy", 'alpha') : $object->morphy), 0, 0, 0, '', 0, 0, 0, '', '', 1);
- print "</td></tr>";
- // Type
- print '<tr><td class="fieldrequired">'.$langs->trans("Type").'</td><td>';
- if ($user->rights->adherent->creer) {
- print $form->selectarray("typeid", $adht->liste_array(), (GETPOSTISSET("typeid") ? GETPOST("typeid", 'int') : $object->typeid), 0, 0, 0, '', 0, 0, 0, '', '', 1);
- } else {
- print $adht->getNomUrl(1);
- print '<input type="hidden" name="typeid" value="'.$object->typeid.'">';
- }
- print "</td></tr>";
- // Company
- print '<tr><td id="tdcompany">'.$langs->trans("Company").'</td><td><input type="text" name="societe" class="minwidth300" maxlength="128" value="'.(GETPOSTISSET("societe") ? GETPOST("societe", 'alphanohtml', 2) : $object->company).'"></td></tr>';
- // Civility
- print '<tr><td>'.$langs->trans("UserTitle").'</td><td>';
- print $formcompany->select_civility(GETPOSTISSET("civility_id") ? GETPOST("civility_id", 'alpha') : $object->civility_id, 'civility_id', 'maxwidth150', 1);
- print '</td>';
- print '</tr>';
- // Lastname
- print '<tr><td id="tdlastname">'.$langs->trans("Lastname").'</td><td><input type="text" name="lastname" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET("lastname") ? GETPOST("lastname", 'alphanohtml', 2) : $object->lastname).'"></td>';
- print '</tr>';
- // Firstname
- print '<tr><td id="tdfirstname">'.$langs->trans("Firstname").'</td><td><input type="text" name="firstname" class="minwidth300" maxlength="50" value="'.(GETPOSTISSET("firstname") ? GETPOST("firstname", 'alphanohtml', 3) : $object->firstname).'"></td>';
- print '</tr>';
- // Gender
- print '<tr><td>'.$langs->trans("Gender").'</td>';
- print '<td>';
- $arraygender = array('man'=>$langs->trans("Genderman"), 'woman'=>$langs->trans("Genderwoman"), 'other'=>$langs->trans("Genderother"));
- print $form->selectarray('gender', $arraygender, GETPOSTISSET('gender') ? GETPOST('gender', 'alphanohtml') : $object->gender, 1, 0, 0, '', 0, 0, 0, '', '', 1);
- print '</td></tr>';
- // Photo
- print '<tr><td>'.$langs->trans("Photo").'</td>';
- print '<td class="hideonsmartphone" valign="middle">';
- print $form->showphoto('memberphoto', $object)."\n";
- if ($caneditfieldmember) {
- if ($object->photo) {
- print "<br>\n";
- }
- print '<table class="nobordernopadding">';
- if ($object->photo) {
- print '<tr><td><input type="checkbox" class="flat photodelete" name="deletephoto" id="photodelete"> '.$langs->trans("Delete").'<br><br></td></tr>';
- }
- print '<tr><td>'.$langs->trans("PhotoFile").'</td></tr>';
- print '<tr><td><input type="file" class="flat" name="photo" id="photoinput"></td></tr>';
- print '</table>';
- }
- print '</td></tr>';
- // EMail
- print '<tr><td>'.(getDolGlobalString("ADHERENT_MAIL_REQUIRED") ? '<span class="fieldrequired">' : '').$langs->trans("EMail").(getDolGlobalString("ADHERENT_MAIL_REQUIRED") ? '</span>' : '').'</td>';
- print '<td>'.img_picto('', 'object_email', 'class="pictofixedwidth"').'<input type="text" name="member_email" class="minwidth300" maxlength="255" value="'.(GETPOSTISSET("member_email") ? GETPOST("member_email", '', 2) : $object->email).'"></td></tr>';
- // Website
- print '<tr><td>'.$form->editfieldkey('Web', 'member_url', GETPOST('member_url', 'alpha'), $object, 0).'</td>';
- print '<td>'.img_picto('', 'globe', 'class="pictofixedwidth"').'<input type="text" name="member_url" id="member_url" class="maxwidth200onsmartphone maxwidth500 widthcentpercentminusx " value="'.(GETPOSTISSET('member_url') ?GETPOST('member_url', 'alpha') : $object->url).'"></td></tr>';
- // Address
- print '<tr><td>'.$langs->trans("Address").'</td><td>';
- print '<textarea name="address" wrap="soft" class="quatrevingtpercent" rows="'.ROWS_2.'">'.(GETPOSTISSET("address") ? GETPOST("address", 'alphanohtml', 2) : $object->address).'</textarea>';
- print '</td></tr>';
- // Zip / Town
- print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td>';
- print $formcompany->select_ziptown((GETPOSTISSET("zipcode") ? GETPOST("zipcode", 'alphanohtml', 2) : $object->zip), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 6);
- print ' ';
- print $formcompany->select_ziptown((GETPOSTISSET("town") ? GETPOST("town", 'alphanohtml', 2) : $object->town), 'town', array('zipcode', 'selectcountry_id', 'state_id'));
- print '</td></tr>';
- // Country
- //$object->country_id=$object->country_id?$object->country_id:$mysoc->country_id; // In edit mode we don't force to company country if not defined
- print '<tr><td>'.$langs->trans('Country').'</td><td>';
- print img_picto('', 'country', 'class="pictofixedwidth"');
- print $form->select_country(GETPOSTISSET("country_id") ? GETPOST("country_id", "alpha") : $object->country_id, 'country_id');
- if ($user->admin) {
- print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
- }
- print '</td></tr>';
- // State
- if (empty($conf->global->MEMBER_DISABLE_STATE)) {
- print '<tr><td>'.$langs->trans('State').'</td><td>';
- print img_picto('', 'state', 'class="pictofixedwidth"');
- print $formcompany->select_state($object->state_id, GETPOSTISSET("country_id") ? GETPOST("country_id", "alpha") : $object->country_id);
- print '</td></tr>';
- }
- // Pro phone
- print '<tr><td>'.$langs->trans("PhonePro").'</td>';
- print '<td>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').'<input type="text" name="phone" value="'.(GETPOSTISSET("phone") ? GETPOST("phone") : $object->phone).'"></td></tr>';
- // Personal phone
- print '<tr><td>'.$langs->trans("PhonePerso").'</td>';
- print '<td>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').'<input type="text" name="phone_perso" value="'.(GETPOSTISSET("phone_perso") ? GETPOST("phone_perso") : $object->phone_perso).'"></td></tr>';
- // Mobile phone
- print '<tr><td>'.$langs->trans("PhoneMobile").'</td>';
- print '<td>'.img_picto('', 'object_phoning_mobile', 'class="pictofixedwidth"').'<input type="text" name="phone_mobile" value="'.(GETPOSTISSET("phone_mobile") ? GETPOST("phone_mobile") : $object->phone_mobile).'"></td></tr>';
- if (!empty($conf->socialnetworks->enabled)) {
- foreach ($socialnetworks as $key => $value) {
- if (!$value['active']) {
- break;
- }
- print '<tr><td>'.$langs->trans($value['label']).'</td><td><input type="text" name="'.$key.'" class="minwidth100" value="'.(GETPOSTISSET($key) ? GETPOST($key, 'alphanohtml') : $object->socialnetworks[$key]).'"></td></tr>';
- }
- }
- // Birth Date
- print "<tr><td>".$langs->trans("DateOfBirth")."</td><td>\n";
- print $form->selectDate(($object->birth ? $object->birth : -1), 'birth', '', '', 1, 'formsoc');
- print "</td></tr>\n";
- // Public profil
- print "<tr><td>".$langs->trans("Public")."</td><td>\n";
- print $form->selectyesno("public", (GETPOSTISSET("public") ? GETPOST("public", 'alphanohtml', 2) : $object->public), 1);
- print "</td></tr>\n";
- // Categories
- if (!empty($conf->categorie->enabled) && !empty($user->rights->categorie->lire)) {
- print '<tr><td>'.$form->editfieldkey("Categories", 'memcats', '', $object, 0).'</td>';
- print '<td>';
- $cate_arbo = $form->select_all_categories(Categorie::TYPE_MEMBER, null, null, null, null, 1);
- $c = new Categorie($db);
- $cats = $c->containing($object->id, Categorie::TYPE_MEMBER);
- $arrayselected = array();
- if (is_array($cats)) {
- foreach ($cats as $cat) {
- $arrayselected[] = $cat->id;
- }
- }
- print $form->multiselectarray('memcats', $cate_arbo, $arrayselected, '', 0, '', 0, '100%');
- print "</td></tr>";
- }
- // Third party Dolibarr
- if (!empty($conf->societe->enabled)) {
- print '<tr><td>'.$langs->trans("LinkedToDolibarrThirdParty").'</td><td colspan="2" class="valeur">';
- if ($object->socid) {
- $company = new Societe($db);
- $result = $company->fetch($object->socid);
- print $company->getNomUrl(1);
- } else {
- print $langs->trans("NoThirdPartyAssociatedToMember");
- }
- print '</td></tr>';
- }
- // Login Dolibarr
- print '<tr><td>'.$langs->trans("LinkedToDolibarrUser").'</td><td colspan="2" class="valeur">';
- if ($object->user_id) {
- $form->form_users($_SERVER['PHP_SELF'].'?rowid='.$object->id, $object->user_id, 'none');
- } else {
- print $langs->trans("NoDolibarrAccess");
- }
- print '</td></tr>';
- // Other attributes. Fields from hook formObjectOptions and Extrafields.
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
- print '</table>';
- print dol_get_fiche_end();
- print $form->buttonsSaveCancel("Save", '');
- print '</form>';
- }
- // View
- if ($id > 0 && $action != 'edit') {
- $res = $object->fetch($id);
- if ($res < 0) {
- dol_print_error($db, $object->error); exit;
- }
- $res = $object->fetch_optionals();
- if ($res < 0) {
- dol_print_error($db); exit;
- }
- $adht = new AdherentType($db);
- $res = $adht->fetch($object->typeid);
- if ($res < 0) {
- dol_print_error($db); exit;
- }
- /*
- * Show tabs
- */
- $head = member_prepare_head($object);
- print dol_get_fiche_head($head, 'general', $langs->trans("Member"), -1, 'user');
- // Confirm create user
- if ($action == 'create_user') {
- $login = (GETPOSTISSET('login') ? GETPOST('login', 'alphanohtml') : $object->login);
- if (empty($login)) {
- // Full firstname and name separated with a dot : firstname.name
- include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- $login = dol_buildlogin($object->lastname, $object->firstname);
- }
- if (empty($login)) {
- $login = strtolower(substr($object->firstname, 0, 4)).strtolower(substr($object->lastname, 0, 4));
- }
- // Create a form array
- $formquestion = array(
- array('label' => $langs->trans("LoginToCreate"), 'type' => 'text', 'name' => 'login', 'value' => $login)
- );
- if (!empty($conf->societe->enabled) && $object->socid > 0) {
- $object->fetch_thirdparty();
- $formquestion[] = array('label' => $langs->trans("UserWillBe"), 'type' => 'radio', 'name' => 'internalorexternal', 'default'=>'external', 'values' => array('external'=>$langs->trans("External").' - '.$langs->trans("LinkedToDolibarrThirdParty").' '.$object->thirdparty->getNomUrl(1, '', 0, 1), 'internal'=>$langs->trans("Internal")));
- }
- $text = '';
- if (!empty($conf->societe->enabled) && $object->socid <= 0) {
- $text .= $langs->trans("UserWillBeInternalUser").'<br>';
- }
- $text .= $langs->trans("ConfirmCreateLogin");
- print $form->formconfirm($_SERVER["PHP_SELF"]."?rowid=".$object->id, $langs->trans("CreateDolibarrLogin"), $text, "confirm_create_user", $formquestion, 'yes');
- }
- // Confirm create third party
- if ($action == 'create_thirdparty') {
- $companyalias = '';
- $fullname = $object->getFullName($langs);
- if ($object->morphy == 'mor') {
- $companyname = $object->company;
- if (!empty($fullname)) {
- $companyalias = $fullname;
- }
- } else {
- $companyname = $fullname;
- if (!empty($object->company)) {
- $companyalias = $object->company;
- }
- }
- // Create a form array
- $formquestion = array(
- array('label' => $langs->trans("NameToCreate"), 'type' => 'text', 'name' => 'companyname', 'value' => $companyname, 'morecss' => 'minwidth300', 'moreattr' => 'maxlength="128"'),
- array('label' => $langs->trans("AliasNames"), 'type' => 'text', 'name' => 'companyalias', 'value' => $companyalias, 'morecss' => 'minwidth300', 'moreattr' => 'maxlength="128"')
- );
- print $form->formconfirm($_SERVER["PHP_SELF"]."?rowid=".$object->id, $langs->trans("CreateDolibarrThirdParty"), $langs->trans("ConfirmCreateThirdParty"), "confirm_create_thirdparty", $formquestion, 'yes');
- }
- // Confirm validate member
- if ($action == 'valid') {
- $langs->load("mails");
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members", "companies", "install", "other"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_MEMBER_VALIDATION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnValid()), $substitutionarray, $outputlangs);
- $tmp = $langs->trans("SendingAnEMailToMember");
- $tmp .= '<br>'.$langs->trans("MailFrom").': <b>'.$conf->global->ADHERENT_MAIL_FROM.'</b>, ';
- $tmp .= '<br>'.$langs->trans("MailRecipient").': <b>'.$object->email.'</b>';
- $helpcontent = '';
- $helpcontent .= '<b>'.$langs->trans("MailFrom").'</b>: '.$conf->global->ADHERENT_MAIL_FROM.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("MailRecipient").'</b>: '.$object->email.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("Subject").'</b>:<br>'."\n";
- $helpcontent .= $subjecttosend."\n";
- $helpcontent .= "<br>";
- $helpcontent .= '<b>'.$langs->trans("Content").'</b>:<br>';
- $helpcontent .= dol_htmlentitiesbr($texttosend)."\n";
- $label = $form->textwithpicto($tmp, $helpcontent, 1, 'help');
- // Create form popup
- $formquestion = array();
- if ($object->email) {
- $formquestion[] = array('type' => 'checkbox', 'name' => 'send_mail', 'label' => $label, 'value' => ($conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL ?true:false));
- }
- if (!empty($conf->mailman->enabled) && !empty($conf->global->ADHERENT_USE_MAILMAN)) {
- $formquestion[] = array('type'=>'other', 'label'=>$langs->transnoentitiesnoconv("SynchroMailManEnabled"), 'value'=>'');
- }
- if (!empty($conf->mailman->enabled) && !empty($conf->global->ADHERENT_USE_SPIP)) {
- $formquestion[] = array('type'=>'other', 'label'=>$langs->transnoentitiesnoconv("SynchroSpipEnabled"), 'value'=>'');
- }
- print $form->formconfirm("card.php?rowid=".$id, $langs->trans("ValidateMember"), $langs->trans("ConfirmValidateMember"), "confirm_valid", $formquestion, 'yes', 1, 220);
- }
- // Confirm resiliate
- if ($action == 'resiliate') {
- $langs->load("mails");
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_CANCELATION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnResiliate()), $substitutionarray, $outputlangs);
- $tmp = $langs->trans("SendingAnEMailToMember");
- $tmp .= '<br>('.$langs->trans("MailFrom").': <b>'.$conf->global->ADHERENT_MAIL_FROM.'</b>, ';
- $tmp .= $langs->trans("MailRecipient").': <b>'.$object->email.'</b>)';
- $helpcontent = '';
- $helpcontent .= '<b>'.$langs->trans("MailFrom").'</b>: '.$conf->global->ADHERENT_MAIL_FROM.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("MailRecipient").'</b>: '.$object->email.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("Subject").'</b>:<br>'."\n";
- $helpcontent .= $subjecttosend."\n";
- $helpcontent .= "<br>";
- $helpcontent .= '<b>'.$langs->trans("Content").'</b>:<br>';
- $helpcontent .= dol_htmlentitiesbr($texttosend)."\n";
- $label = $form->textwithpicto($tmp, $helpcontent, 1, 'help');
- // Create an array
- $formquestion = array();
- if ($object->email) {
- $formquestion[] = array('type' => 'checkbox', 'name' => 'send_mail', 'label' => $label, 'value' => (!empty($conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL) ? 'true' : 'false'));
- }
- if ($backtopage) {
- $formquestion[] = array('type' => 'hidden', 'name' => 'backtopage', 'value' => ($backtopage != '1' ? $backtopage : $_SERVER["HTTP_REFERER"]));
- }
- print $form->formconfirm("card.php?rowid=".$id, $langs->trans("ResiliateMember"), $langs->trans("ConfirmResiliateMember"), "confirm_resiliate", $formquestion, 'no', 1, 240);
- }
- // Confirm exclude
- if ($action == 'exclude') {
- $langs->load("mails");
- $adht = new AdherentType($db);
- $adht->fetch($object->typeid);
- $subject = '';
- $msg = '';
- // Send subscription email
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- // Set output language
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang);
- // Load traductions files required by page
- $outputlangs->loadLangs(array("main", "members"));
- // Get email content from template
- $arraydefaultmessage = null;
- $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_EXCLUSION;
- if (!empty($labeltouse)) {
- $arraydefaultmessage = $formmail->getEMailTemplate($db, 'member', $user, $outputlangs, 0, 1, $labeltouse);
- }
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $subject = $arraydefaultmessage->topic;
- $msg = $arraydefaultmessage->content;
- }
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
- $texttosend = make_substitutions(dol_concatdesc($msg, $adht->getMailOnExclude()), $substitutionarray, $outputlangs);
- $tmp = $langs->trans("SendingAnEMailToMember");
- $tmp .= '<br>('.$langs->trans("MailFrom").': <b>'.$conf->global->ADHERENT_MAIL_FROM.'</b>, ';
- $tmp .= $langs->trans("MailRecipient").': <b>'.$object->email.'</b>)';
- $helpcontent = '';
- $helpcontent .= '<b>'.$langs->trans("MailFrom").'</b>: '.$conf->global->ADHERENT_MAIL_FROM.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("MailRecipient").'</b>: '.$object->email.'<br>'."\n";
- $helpcontent .= '<b>'.$langs->trans("Subject").'</b>:<br>'."\n";
- $helpcontent .= $subjecttosend."\n";
- $helpcontent .= "<br>";
- $helpcontent .= '<b>'.$langs->trans("Content").'</b>:<br>';
- $helpcontent .= dol_htmlentitiesbr($texttosend)."\n";
- $label = $form->textwithpicto($tmp, $helpcontent, 1, 'help');
- // Create an array
- $formquestion = array();
- if ($object->email) {
- $formquestion[] = array('type' => 'checkbox', 'name' => 'send_mail', 'label' => $label, 'value' => (!empty($conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL) ? 'true' : 'false'));
- }
- if ($backtopage) {
- $formquestion[] = array('type' => 'hidden', 'name' => 'backtopage', 'value' => ($backtopage != '1' ? $backtopage : $_SERVER["HTTP_REFERER"]));
- }
- print $form->formconfirm("card.php?rowid=".$id, $langs->trans("ExcludeMember"), $langs->trans("ConfirmExcludeMember"), "confirm_exclude", $formquestion, 'no', 1, 240);
- }
- // Confirm remove member
- if ($action == 'delete') {
- $formquestion = array();
- if ($backtopage) {
- $formquestion[] = array('type' => 'hidden', 'name' => 'backtopage', 'value' => ($backtopage != '1' ? $backtopage : $_SERVER["HTTP_REFERER"]));
- }
- print $form->formconfirm("card.php?rowid=".$id, $langs->trans("DeleteMember"), $langs->trans("ConfirmDeleteMember"), "confirm_delete", $formquestion, 'no', 1);
- }
- // Confirm add in spip
- if ($action == 'add_spip') {
- print $form->formconfirm("card.php?rowid=".$id, $langs->trans('AddIntoSpip'), $langs->trans('AddIntoSpipConfirmation'), 'confirm_add_spip');
- }
- // Confirm removed from spip
- if ($action == 'del_spip') {
- print $form->formconfirm("card.php?rowid=$id", $langs->trans('DeleteIntoSpip'), $langs->trans('DeleteIntoSpipConfirmation'), 'confirm_del_spip');
- }
- $rowspan = 17;
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- $rowspan++;
- }
- if (!empty($conf->societe->enabled)) {
- $rowspan++;
- }
- $linkback = '<a href="'.DOL_URL_ROOT.'/adherents/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
- $morehtmlref = '<a href="'.DOL_URL_ROOT.'/adherents/vcard.php?id='.$object->id.'" class="refid">';
- $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
- $morehtmlref .= '</a>';
- dol_banner_tab($object, 'rowid', $linkback, 1, 'rowid', 'ref', $morehtmlref);
- print '<div class="fichecenter">';
- print '<div class="fichehalfleft">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border tableforfield centpercent">';
- // Login
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- print '<tr><td class="titlefield">'.$langs->trans("Login").' / '.$langs->trans("Id").'</td><td class="valeur">'.dol_escape_htmltag($object->login).'</td></tr>';
- }
- // Type
- print '<tr><td class="titlefield">'.$langs->trans("Type").'</td><td class="valeur">'.$adht->getNomUrl(1)."</td></tr>\n";
- // Morphy
- print '<tr><td>'.$langs->trans("MemberNature").'</td><td class="valeur" >'.$object->getmorphylib().'</td>';
- print '</tr>';
- // Company
- print '<tr><td>'.$langs->trans("Company").'</td><td class="valeur">'.dol_escape_htmltag($object->company).'</td></tr>';
- // Civility
- print '<tr><td>'.$langs->trans("UserTitle").'</td><td class="valeur">'.$object->getCivilityLabel().'</td>';
- print '</tr>';
- // Password
- if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
- print '<tr><td>'.$langs->trans("Password").'</td><td>';
- if ($object->pass) {
- print preg_replace('/./i', '*', $object->pass);
- } else {
- if ($user->admin) {
- print '<!-- '.$langs->trans("Crypted").': '.$object->pass_indatabase_crypted.' -->';
- }
- print '<span class="opacitymedium">'.$langs->trans("Hidden").'</span>';
- }
- if (!empty($object->pass_indatabase) && empty($object->user_id)) { // Show warning only for old password still in clear (does not happen anymore)
- $langs->load("errors");
- $htmltext = $langs->trans("WarningPasswordSetWithNoAccount");
- print ' '.$form->textwithpicto('', $htmltext, 1, 'warning');
- }
- print '</td></tr>';
- }
- // Date end subscription
- print '<tr><td>'.$langs->trans("SubscriptionEndDate").'</td><td class="valeur">';
- if ($object->datefin) {
- print dol_print_date($object->datefin, 'day');
- if ($object->hasDelay()) {
- print " ".img_warning($langs->trans("Late"));
- }
- } else {
- if ($object->need_subscription == 0) {
- print $langs->trans("SubscriptionNotNeeded");
- } elseif (!$adht->subscription) {
- print $langs->trans("SubscriptionNotRecorded");
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- print " ".img_warning($langs->trans("Late")); // displays delay Pictogram only if not a draft, not excluded and not resiliated
- }
- } else {
- print $langs->trans("SubscriptionNotReceived");
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- print " ".img_warning($langs->trans("Late")); // displays delay Pictogram only if not a draft, not excluded and not resiliated
- }
- }
- }
- print '</td></tr>';
- print '</table>';
- print '</div>';
- print '<div class="fichehalfright">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border tableforfield centpercent">';
- // Tags / Categories
- if (!empty($conf->categorie->enabled) && !empty($user->rights->categorie->lire)) {
- print '<tr><td>'.$langs->trans("Categories").'</td>';
- print '<td colspan="2">';
- print $form->showCategories($object->id, Categorie::TYPE_MEMBER, 1);
- print '</td></tr>';
- }
- // Birth Date
- print '<tr><td class="titlefield">'.$langs->trans("DateOfBirth").'</td><td class="valeur">'.dol_print_date($object->birth, 'day').'</td></tr>';
- // Public
- print '<tr><td>'.$langs->trans("Public").'</td><td class="valeur">'.yn($object->public).'</td></tr>';
- // Other attributes
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
- // Third party Dolibarr
- if (!empty($conf->societe->enabled)) {
- print '<tr><td>';
- $editenable = $user->rights->adherent->creer;
- print $form->editfieldkey('LinkedToDolibarrThirdParty', 'thirdparty', '', $object, $editenable);
- print '</td><td colspan="2" class="valeur">';
- if ($action == 'editthirdparty') {
- $htmlname = 'socid';
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'" name="form'.$htmlname.'">';
- print '<input type="hidden" name="rowid" value="'.$object->id.'">';
- print '<input type="hidden" name="action" value="set'.$htmlname.'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<table class="nobordernopadding">';
- print '<tr><td>';
- print $form->select_company($object->socid, 'socid', '', 1);
- print '</td>';
- print '<td class="left"><input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'"></td>';
- print '</tr></table></form>';
- } else {
- if ($object->socid) {
- $company = new Societe($db);
- $result = $company->fetch($object->socid);
- print $company->getNomUrl(1);
- // Show link to invoices
- $tmparray = $company->getOutstandingBills('customer');
- if (!empty($tmparray['refs'])) {
- print ' - '.img_picto($langs->trans("Invoices"), 'bill', 'class="paddingright"').'<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?socid='.$object->socid.'">'.$langs->trans("Invoices").' ('.count($tmparray['refs']).')';
- // TODO Add alert if warning on at least one invoice late
- print '</a>';
- }
- } else {
- print '<span class="opacitymedium">'.$langs->trans("NoThirdPartyAssociatedToMember").'</span>';
- }
- }
- print '</td></tr>';
- }
- // Login Dolibarr - Link to user
- print '<tr><td>';
- $editenable = $user->rights->adherent->creer && $user->rights->user->user->creer;
- print $form->editfieldkey('LinkedToDolibarrUser', 'login', '', $object, $editenable);
- print '</td><td colspan="2" class="valeur">';
- if ($action == 'editlogin') {
- $form->form_users($_SERVER['PHP_SELF'].'?rowid='.$object->id, $object->user_id, 'userid', '');
- } else {
- if ($object->user_id) {
- $linkeduser = new User($db);
- $linkeduser->fetch($object->user_id);
- print $linkeduser->getNomUrl(-1);
- } else {
- print '<span class="opacitymedium">'.$langs->trans("NoDolibarrAccess").'</span>';
- }
- }
- print '</td></tr>';
- print "</table>\n";
- print "</div></div>\n";
- print '<div style="clear:both"></div>';
- print dol_get_fiche_end();
- /*
- * Action bar
- */
- print '<div class="tabsAction">';
- $isinspip = 0;
- $parameters = array();
- $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been
- if (empty($reshook)) {
- if ($action != 'editlogin' && $action != 'editthirdparty') {
- // Send
- if (empty($user->socid)) {
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=presend&mode=init#formmailbeforetitle">'.$langs->trans('SendMail').'</a>'."\n";
- }
- }
- // Send card by email
- // TODO Remove this to replace with a template
- /*
- if ($user->rights->adherent->creer) {
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- if ($object->email) print '<a class="butAction" href="card.php?rowid='.$object->id.'&action=sendinfo">'.$langs->trans("SendCardByMail")."</a>\n";
- else print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("NoEMail")).'">'.$langs->trans("SendCardByMail")."</a>\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("ValidateBefore")).'">'.$langs->trans("SendCardByMail")."</span>";
- }
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("SendCardByMail")."</span>";
- }*/
- // Modify
- if (!empty($user->rights->adherent->creer)) {
- print '<a class="butAction" href="card.php?rowid='.$id.'&action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>'."\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Modify").'</span>'."\n";
- }
- // Validate
- if (Adherent::STATUS_DRAFT == $object->statut) {
- if ($user->rights->adherent->creer) {
- print '<a class="butAction" href="card.php?rowid='.$id.'&action=valid">'.$langs->trans("Validate").'</a>'."\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Validate").'</span>'."\n";
- }
- }
- // Reactivate
- if (Adherent::STATUS_RESILIATED == $object->statut || Adherent::STATUS_EXCLUDED == $object->statut) {
- if ($user->rights->adherent->creer) {
- print '<a class="butAction" href="card.php?rowid='.$id.'&action=valid">'.$langs->trans("Reenable")."</a>\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Reenable").'</span>'."\n";
- }
- }
- // Resiliate
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- if ($user->rights->adherent->supprimer) {
- print '<a class="butAction" href="card.php?rowid='.$id.'&action=resiliate">'.$langs->trans("Resiliate")."</a></span>\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Resiliate").'</span>'."\n";
- }
- }
- // Exclude
- if (Adherent::STATUS_VALIDATED == $object->statut) {
- if ($user->rights->adherent->supprimer) {
- print '<a class="butAction" href="card.php?rowid='.$id.'&action=exclude">'.$langs->trans("Exclude")."</a></span>\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Exclude").'</span>'."\n";
- }
- }
- // Create third party
- if (!empty($conf->societe->enabled) && !$object->socid) {
- if ($user->rights->societe->creer) {
- if (Adherent::STATUS_DRAFT != $object->statut) {
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?rowid='.$object->id.'&action=create_thirdparty" title="'.dol_escape_htmltag($langs->trans("CreateDolibarrThirdPartyDesc")).'">'.$langs->trans("CreateDolibarrThirdParty").'</a>'."\n";
- } else {
- print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("ValidateBefore")).'">'.$langs->trans("CreateDolibarrThirdParty").'</a>'."\n";
- }
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("CreateDolibarrThirdParty").'</span>'."\n";
- }
- }
- // Create user
- if (!$user->socid && !$object->user_id) {
- if ($user->rights->user->user->creer) {
- if (Adherent::STATUS_DRAFT != $object->statut) {
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?rowid='.$object->id.'&action=create_user" title="'.dol_escape_htmltag($langs->trans("CreateDolibarrLoginDesc")).'">'.$langs->trans("CreateDolibarrLogin").'</a>'."\n";
- } else {
- print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("ValidateBefore")).'">'.$langs->trans("CreateDolibarrLogin").'</a>'."\n";
- }
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("CreateDolibarrLogin").'</span>'."\n";
- }
- }
- // Action SPIP
- if (!empty($conf->mailmanspip->enabled) && !empty($conf->global->ADHERENT_USE_SPIP)) {
- $isinspip = $mailmanspip->is_in_spip($object);
- if ($isinspip == 1) {
- print '<a class="butAction" href="card.php?rowid='.$object->id.'&action=del_spip&token='.newToken().'">'.$langs->trans("DeleteIntoSpip").'</a>'."\n";
- }
- if ($isinspip == 0) {
- print '<a class="butAction" href="card.php?rowid='.$object->id.'&action=add_spip&token='.newToken().'">'.$langs->trans("AddIntoSpip").'</a>'."\n";
- }
- }
- // Delete
- if ($user->rights->adherent->supprimer) {
- print '<a class="butActionDelete" href="card.php?rowid='.$object->id.'&action=delete&token='.newToken().'">'.$langs->trans("Delete").'</a>'."\n";
- } else {
- print '<span class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("Delete").'</span>'."\n";
- }
- }
- }
- print '</div>';
- if ($isinspip == -1) {
- print '<br><br><span class="error">'.$langs->trans('SPIPConnectionFailed').': '.$mailmanspip->error.'</span>';
- }
- // Select mail models is same action as presend
- if (GETPOST('modelselected')) {
- $action = 'presend';
- }
- if ($action != 'presend') {
- print '<div class="fichecenter"><div class="fichehalfleft">';
- print '<a name="builddoc"></a>'; // ancre
- // Generated documents
- $filename = dol_sanitizeFileName($object->ref);
- $filedir = $conf->adherent->dir_output.'/'.get_exdir(0, 0, 0, 1, $object, 'member');
- $urlsource = $_SERVER['PHP_SELF'].'?id='.$object->id;
- $genallowed = $user->rights->adherent->lire;
- $delallowed = $user->rights->adherent->creer;
- print $formfile->showdocuments('member', $filename, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0, '', '', '', (empty($object->default_lang) ? '' : $object->default_lang), '', $object);
- $somethingshown = $formfile->numoffiles;
- // Show links to link elements
- //$linktoelem = $form->showLinkToObjectBlock($object, null, array('subscription'));
- //$somethingshown = $form->showLinkedObjectBlock($object, '');
- // Show links to link elements
- /*$linktoelem = $form->showLinkToObjectBlock($object,array('order'));
- if ($linktoelem) {
- print ($somethingshown?'':'<br>').$linktoelem;
- }
- */
- // Show online payment link
- $useonlinepayment = (!empty($conf->paypal->enabled) || !empty($conf->stripe->enabled) || !empty($conf->paybox->enabled));
- if ($useonlinepayment) {
- print '<br>';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
- print showOnlinePaymentUrl('membersubscription', $object->ref);
- }
- print '</div><div class="fichehalfright">';
- $MAX = 10;
- $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/adherents/agenda.php?id='.$object->id);
- // List of actions on element
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
- $formactions = new FormActions($db);
- $somethingshown = $formactions->showactions($object, $object->element, $socid, 1, 'listactions', $MAX, '', $morehtmlcenter);
- print '</div></div>';
- }
- // Presend form
- $modelmail = 'member';
- $defaulttopic = 'CardContent';
- $diroutput = $conf->adherent->dir_output;
- $trackid = 'mem'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php';
- }
- }
- // End of page
- llxFooter();
- $db->close();
|