123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710 |
- <?php
- /* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2001-2002 Jean-Louis Bergamo <jlb@j1b.org>
- * Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2012 J. Fernando Lagrange <fernando@demo-tic.org>
- * Copyright (C) 2018-2023 Frédéric France <frederic.france@netlogic.fr>
- * Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.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/public/partnership/new.php
- * \ingroup member
- * \brief Example of form to add a new member
- */
- if (!defined('NOLOGIN')) {
- define("NOLOGIN", 1); // This means this output page does not require to be logged.
- }
- if (!defined('NOCSRFCHECK')) {
- define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
- }
- if (!defined('NOIPCHECK')) {
- define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
- }
- if (!defined('NOBROWSERNOTIF')) {
- define('NOBROWSERNOTIF', '1');
- }
- // For MultiCompany module.
- // Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
- // TODO This should be useless. Because entity must be retrieve from object ref and not from url.
- $entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1));
- if (is_numeric($entity)) {
- define("DOLENTITY", $entity);
- }
- // Load Dolibarr environment
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/partnership/class/partnership.class.php';
- require_once DOL_DOCUMENT_ROOT.'/partnership/class/partnership_type.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/lib/date.lib.php';
- // Init vars
- $errmsg = '';
- $num = 0;
- $error = 0;
- $backtopage = GETPOST('backtopage', 'alpha');
- $action = GETPOST('action', 'aZ09');
- // Load translation files
- $langs->loadLangs(array("main", "members", "partnership", "companies", "install", "other"));
- // Security check
- if (empty($conf->partnership->enabled)) {
- httponly_accessforbidden('Module Partnership not enabled');
- }
- if (!getDolGlobalString('PARTNERSHIP_ENABLE_PUBLIC')) {
- httponly_accessforbidden("Auto subscription form for public visitors has not been enabled");
- }
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('publicnewpartnershipcard', 'globalcard'));
- $extrafields = new ExtraFields($db);
- $object = new Partnership($db);
- $user->loadDefaultValues();
- /**
- * Show header for new partnership
- *
- * @param string $title Title
- * @param string $head Head array
- * @param int $disablejs More content into html header
- * @param int $disablehead More content into html header
- * @param array $arrayofjs Array of complementary js files
- * @param array $arrayofcss Array of complementary css files
- * @return void
- */
- function llxHeaderVierge($title, $head = "", $disablejs = 0, $disablehead = 0, $arrayofjs = [], $arrayofcss = [])
- {
- global $user, $conf, $langs, $mysoc;
- top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); // Show html headers
- print '<body id="mainbody" class="publicnewmemberform">';
- // Define urllogo
- $urllogo = DOL_URL_ROOT.'/theme/common/login_logo.png';
- if (!empty($mysoc->logo_small) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$mysoc->logo_small)) {
- $urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode('logos/thumbs/'.$mysoc->logo_small);
- } elseif (!empty($mysoc->logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$mysoc->logo)) {
- $urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode('logos/'.$mysoc->logo);
- } elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/dolibarr_logo.svg')) {
- $urllogo = DOL_URL_ROOT.'/theme/dolibarr_logo.svg';
- }
- print '<div class="center">';
- // Output html code for logo
- if ($urllogo) {
- print '<div class="backgreypublicpayment">';
- print '<div class="logopublicpayment">';
- print '<img id="dolpaymentlogo" src="'.$urllogo.'">';
- print '</div>';
- if (!getDolGlobalString('MAIN_HIDE_POWERED_BY')) {
- print '<div class="poweredbypublicpayment opacitymedium right"><a class="poweredbyhref" href="https://www.dolibarr.org?utm_medium=website&utm_source=poweredby" target="dolibarr" rel="noopener">'.$langs->trans("PoweredBy").'<br><img class="poweredbyimg" src="'.DOL_URL_ROOT.'/theme/dolibarr_logo.svg" width="80px"></a></div>';
- }
- print '</div>';
- }
- if (getDolGlobalString('PARTNERSHIP_IMAGE_PUBLIC_REGISTRATION')) {
- print '<div class="backimagepublicregistration">';
- print '<img id="idPARTNERSHIP_IMAGE_PUBLIC_INTERFACE" src="' . getDolGlobalString('PARTNERSHIP_IMAGE_PUBLIC_REGISTRATION').'">';
- print '</div>';
- }
- print '</div>';
- print '<div class="divmainbodylarge">';
- }
- /**
- * Show footer for new member
- *
- * @return void
- */
- function llxFooterVierge()
- {
- global $conf, $langs;
- print '</div>';
- printCommonFooter('public');
- if (!empty($conf->use_javascript_ajax)) {
- print "\n".'<!-- Includes JS Footer of Dolibarr -->'."\n";
- print '<script src="'.DOL_URL_ROOT.'/core/js/lib_foot.js.php?lang='.$langs->defaultlang.'"></script>'."\n";
- }
- print "</body>\n";
- print "</html>\n";
- }
- /*
- * Actions
- */
- $parameters = array();
- // Note that $action and $object may have been modified by some hooks
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action);
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- // Action called when page is submitted
- if (empty($reshook) && $action == 'add') {
- $error = 0;
- $urlback = '';
- $db->begin();
- if (GETPOST('partnershiptype', 'int') <= 0) {
- $error++;
- $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Type"))."<br>\n";
- }
- if (!GETPOST('societe')) {
- $error++;
- $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("societe"))."<br>\n";
- }
- if (!GETPOST('lastname')) {
- $error++;
- $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Lastname"))."<br>\n";
- }
- if (!GETPOST('firstname')) {
- $error++;
- $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Firstname"))."<br>\n";
- }
- if (empty(GETPOST('email'))) {
- $error++;
- $errmsg .= $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Email'))."<br>\n";
- } elseif (GETPOST("email") && !isValidEmail(GETPOST("email"))) {
- $langs->load('errors');
- $error++;
- $errmsg .= $langs->trans("ErrorBadEMail", GETPOST("email"))."<br>\n";
- }
- $public = GETPOSTISSET('public') ? 1 : 0;
- if (!$error) {
- $partnership = new Partnership($db);
- // We try to find the thirdparty or the member
- if (getDolGlobalString('PARTNERSHIP_IS_MANAGED_FOR', 'thirdparty') == 'thirdparty') {
- $partnership->fk_member = 0;
- } elseif (getDolGlobalString('PARTNERSHIP_IS_MANAGED_FOR', 'thirdparty') == 'member') {
- $partnership->fk_soc = 0;
- }
- $partnership->status = 0;
- $partnership->note_private = GETPOST('note_private');
- $partnership->date_creation = dol_now();
- $partnership->date_partnership_start = dol_now();
- $partnership->fk_user_creat = 0;
- $partnership->fk_type = GETPOST('partnershiptype', 'int');
- $partnership->url = GETPOST('url');
- //$partnership->typeid = $conf->global->PARTNERSHIP_NEWFORM_FORCETYPE ? $conf->global->PARTNERSHIP_NEWFORM_FORCETYPE : GETPOST('typeid', 'int');
- $partnership->ip = getUserRemoteIP();
- $nb_post_max = getDolGlobalInt("MAIN_SECURITY_MAX_POST_ON_PUBLIC_PAGES_BY_IP_ADDRESS", 200);
- $now = dol_now();
- $minmonthpost = dol_time_plus_duree($now, -1, "m");
- // Calculate nb of post for IP
- $nb_post_ip = 0;
- if ($nb_post_max > 0) { // Calculate only if there is a limit to check
- $sql = "SELECT COUNT(ref) as nb_partnerships";
- $sql .= " FROM ".MAIN_DB_PREFIX."partnership";
- $sql .= " WHERE ip = '".$db->escape($partnership->ip)."'";
- $sql .= " AND date_creation > '".$db->idate($minmonthpost)."'";
- $resql = $db->query($sql);
- if ($resql) {
- $num = $db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $i++;
- $obj = $db->fetch_object($resql);
- $nb_post_ip = $obj->nb_partnerships;
- }
- }
- }
- // test if thirdparty already exists
- $company = new Societe($db);
- $result = $company->fetch(0, GETPOST('societe'));
- if ($result == 0) { // if entry with name not found, we search using the email
- $result1 = $company->fetch(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, GETPOST('email'));
- if ($result1 > 0) {
- $error++;
- $errmsg = $langs->trans("EmailAlreadyExistsPleaseRewriteYourCompanyName");
- } else {
- // create thirdparty
- $company = new Societe($db);
- $company->name = GETPOST('societe');
- $company->address = GETPOST('address');
- $company->zip = GETPOST('zipcode');
- $company->town = GETPOST('town');
- $company->email = GETPOST('email');
- $company->url = GETPOST('url');
- $company->country_id = GETPOST('country_id', 'int');
- $company->state_id = GETPOST('state_id', 'int');
- $company->name_alias = dolGetFirstLastname(GETPOST('firstname'), GETPOST('lastname'));
- $resultat=$company->create($user);
- if ($resultat < 0) {
- $error++;
- $errmsg .= join('<br>', $company->errors);
- }
- $partnership->fk_soc = $company->id;
- }
- } elseif ($result == -2) {
- $error++;
- $errmsg = $langs->trans("TwoRecordsOfCompanyName");
- } else {
- $partnership->fk_soc = $company->id;
- // update thirdparty fields
- if (empty($company->address)) {
- $company->address = GETPOST('address');
- }
- if (empty($company->zip)) {
- $company->zip = GETPOST('zipcode');
- }
- if (empty($company->town)) {
- $company->town = GETPOST('town');
- }
- if (empty($company->country_id)) {
- $company->country_id = GETPOST('country_id', 'int');
- }
- if (empty($company->email)) {
- $company->email = GETPOST('email');
- }
- if (empty($company->url)) {
- $company->url = GETPOST('url');
- }
- if (empty($company->state_id)) {
- $company->state_id = GETPOST('state_id', 'int');
- }
- if (empty($company->name_alias)) {
- $company->name_alias = dolGetFirstLastname(GETPOST('firstname'), GETPOST('lastname'));
- }
- $company->update(0);
- }
- // Fill array 'array_options' with data from add form
- $extrafields->fetch_name_optionals_label($partnership->table_element);
- $ret = $extrafields->setOptionalsFromPost(null, $partnership);
- if ($ret < 0) {
- $error++;
- }
- if ($nb_post_max > 0 && $nb_post_ip >= $nb_post_max) {
- $error++;
- $errmsg = $langs->trans("AlreadyTooMuchPostOnThisIPAdress");
- array_push($partnership->errors, $langs->trans("AlreadyTooMuchPostOnThisIPAdress"));
- }
- if (!$error) {
- $result = $partnership->create($user);
- if ($result > 0) {
- /*
- require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
- $object = $partnership;
- $partnershipt = new PartnershipType($db);
- $partnershipt->fetch($object->typeid);
- if ($object->email) {
- $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->PARTNERSHIP_EMAIL_TEMPLATE_AUTOREGISTER;
- 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, $partnershipt->getMailOnValid()), $substitutionarray, $outputlangs);
- if ($subjecttosend && $texttosend) {
- $moreinheader = 'X-Dolibarr-Info: send_an_email by public/members/new.php'."\r\n";
- $result = $object->sendEmail($texttosend, $subjecttosend, array(), array(), array(), "", "", 0, -1, '', $moreinheader);
- }
- }
- // Send email to the foundation to say a new member subscribed with autosubscribe form
- /*
- if (getDolGlobalString('MAIN_INFO_SOCIETE_MAIL') && !empty($conf->global->PARTNERSHIP_AUTOREGISTER_NOTIF_MAIL_SUBJECT) &&
- !empty($conf->global->PARTNERSHIP_AUTOREGISTER_NOTIF_MAIL)) {
- // Define link to login card
- $appli = constant('DOL_APPLICATION_TITLE');
- if (!empty($conf->global->MAIN_APPLICATION_TITLE)) {
- $appli = $conf->global->MAIN_APPLICATION_TITLE;
- if (preg_match('/\d\.\d/', $appli)) {
- if (!preg_match('/'.preg_quote(DOL_VERSION).'/', $appli)) {
- $appli .= " (".DOL_VERSION.")"; // If new title contains a version that is different than core
- }
- } else {
- $appli .= " ".DOL_VERSION;
- }
- } else {
- $appli .= " ".DOL_VERSION;
- }
- $to = $partnership->makeSubstitution(getDolGlobalString('MAIN_INFO_SOCIETE_MAIL'));
- $from = getDolGlobalString('PARTNERSHIP_MAIL_FROM');
- $mailfile = new CMailFile(
- '['.$appli.'] '.getDolGlobalString('PARTNERSHIP_AUTOREGISTER_NOTIF_MAIL_SUBJECT', 'Partnership request'),
- $to,
- $from,
- $partnership->makeSubstitution(getDolGlobalString('PARTNERSHIP_AUTOREGISTER_NOTIF_MAIL')),
- array(),
- array(),
- array(),
- "",
- "",
- 0,
- -1
- );
- if (!$mailfile->sendfile()) {
- dol_syslog($langs->trans("ErrorFailedToSendMail", $from, $to), LOG_ERR);
- }
- }*/
- if (!empty($backtopage)) {
- $urlback = $backtopage;
- } elseif (getDolGlobalString('PARTNERSHIP_URL_REDIRECT_SUBSCRIPTION')) {
- $urlback = $conf->global->PARTNERSHIP_URL_REDIRECT_SUBSCRIPTION;
- // TODO Make replacement of __AMOUNT__, etc...
- } else {
- $urlback = $_SERVER["PHP_SELF"]."?action=added&token=".newToken();
- }
- /*
- if (!empty($conf->global->PARTNERSHIP_NEWFORM_PAYONLINE) && $conf->global->PARTNERSHIP_NEWFORM_PAYONLINE != '-1') {
- if ($conf->global->PARTNERSHIP_NEWFORM_PAYONLINE == 'all') {
- $urlback = DOL_MAIN_URL_ROOT.'/public/payment/newpayment.php?from=partnershipnewform&source=membersubscription&ref='.urlencode($partnership->ref);
- if (price2num(GETPOST('amount', 'alpha'))) {
- $urlback .= '&amount='.price2num(GETPOST('amount', 'alpha'));
- }
- if (GETPOST('email')) {
- $urlback .= '&email='.urlencode(GETPOST('email'));
- }
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
- $urlback .= '&securekey='.urlencode(dol_hash($conf->global->PAYMENT_SECURITY_TOKEN.'membersubscription'.$partnership->ref, 2));
- } else {
- $urlback .= '&securekey='.urlencode($conf->global->PAYMENT_SECURITY_TOKEN);
- }
- }
- } elseif ($conf->global->PARTNERSHIP_NEWFORM_PAYONLINE == 'paybox') {
- $urlback = DOL_MAIN_URL_ROOT.'/public/paybox/newpayment.php?from=partnershipnewform&source=membersubscription&ref='.urlencode($partnership->ref);
- if (price2num(GETPOST('amount', 'alpha'))) {
- $urlback .= '&amount='.price2num(GETPOST('amount', 'alpha'));
- }
- if (GETPOST('email')) {
- $urlback .= '&email='.urlencode(GETPOST('email'));
- }
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
- $urlback .= '&securekey='.urlencode(dol_hash($conf->global->PAYMENT_SECURITY_TOKEN.'membersubscription'.$partnership->ref, 2));
- } else {
- $urlback .= '&securekey='.urlencode($conf->global->PAYMENT_SECURITY_TOKEN);
- }
- }
- } elseif ($conf->global->PARTNERSHIP_NEWFORM_PAYONLINE == 'paypal') {
- $urlback = DOL_MAIN_URL_ROOT.'/public/paypal/newpayment.php?from=partnershipnewform&source=membersubscription&ref='.urlencode($partnership->ref);
- if (price2num(GETPOST('amount', 'alpha'))) {
- $urlback .= '&amount='.price2num(GETPOST('amount', 'alpha'));
- }
- if (GETPOST('email')) {
- $urlback .= '&email='.urlencode(GETPOST('email'));
- }
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
- $urlback .= '&securekey='.urlencode(dol_hash($conf->global->PAYMENT_SECURITY_TOKEN.'membersubscription'.$partnership->ref, 2));
- } else {
- $urlback .= '&securekey='.urlencode($conf->global->PAYMENT_SECURITY_TOKEN);
- }
- }
- } elseif ($conf->global->PARTNERSHIP_NEWFORM_PAYONLINE == 'stripe') {
- $urlback = DOL_MAIN_URL_ROOT.'/public/stripe/newpayment.php?from=partnershipnewform&source=membersubscription&ref='.$partnership->ref;
- if (price2num(GETPOST('amount', 'alpha'))) {
- $urlback .= '&amount='.price2num(GETPOST('amount', 'alpha'));
- }
- if (GETPOST('email')) {
- $urlback .= '&email='.urlencode(GETPOST('email'));
- }
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
- if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
- $urlback .= '&securekey='.urlencode(dol_hash($conf->global->PAYMENT_SECURITY_TOKEN.'membersubscription'.$partnership->ref, 2));
- } else {
- $urlback .= '&securekey='.urlencode($conf->global->PAYMENT_SECURITY_TOKEN);
- }
- }
- } else {
- dol_print_error('', "Autosubscribe form is setup to ask an online payment for a not managed online payment");
- exit;
- }
- }*/
- if (!empty($entity)) {
- $urlback .= '&entity='.$entity;
- }
- dol_syslog("partnership ".$partnership->ref." was created, we redirect to ".$urlback);
- } else {
- $error++;
- $errmsg .= join('<br>', $partnership->errors);
- }
- } else {
- setEventMessage($errmsg, 'errors');
- }
- }
- if (!$error) {
- $db->commit();
- Header("Location: ".$urlback);
- exit;
- } else {
- $db->rollback();
- }
- }
- // Action called after a submitted was send and member created successfully
- // If PARTNERSHIP_URL_REDIRECT_SUBSCRIPTION is set to url we never go here because a redirect was done to this url.
- // backtopage parameter with an url was set on member submit page, we never go here because a redirect was done to this url.
- if (empty($reshook) && $action == 'added') {
- llxHeaderVierge($langs->trans("NewPartnershipForm"));
- // Si on a pas ete redirige
- print '<br><br>';
- print '<div class="center">';
- print $langs->trans("NewPartnershipbyWeb");
- print '</div>';
- llxFooterVierge();
- exit;
- }
- /*
- * View
- */
- $form = new Form($db);
- $formcompany = new FormCompany($db);
- $extrafields->fetch_name_optionals_label($object->table_element); // fetch optionals attributes and labels
- llxHeaderVierge($langs->trans("NewPartnershipRequest"));
- print '<br>';
- print load_fiche_titre(img_picto('', 'hands-helping', 'class="pictofixedwidth"').' '.$langs->trans("NewPartnershipRequest"), '', '', 0, 0, 'center');
- print '<div align="center">';
- print '<div id="divsubscribe">';
- print '<div class="center subscriptionformhelptext opacitymedium justify">';
- if (getDolGlobalString('PARTNERSHIP_NEWFORM_TEXT')) {
- print $langs->trans($conf->global->PARTNERSHIP_NEWFORM_TEXT)."<br>\n";
- } else {
- print $langs->trans("NewPartnershipRequestDesc", getDolGlobalString("MAIN_INFO_SOCIETE_MAIL"))."<br>\n";
- }
- print '</div>';
- dol_htmloutput_errors($errmsg);
- // Print form
- print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" name="newmember">'."\n";
- print '<input type="hidden" name="token" value="'.newToken().'" / >';
- print '<input type="hidden" name="entity" value="'.$entity.'" />';
- print '<input type="hidden" name="action" value="add" />';
- print '<br>';
- $messagemandatory = '<span class="">'.$langs->trans("FieldsWithAreMandatory", '*').'</span>';
- //print '<br><span class="opacitymedium small">'.$langs->trans("FieldsWithAreMandatory", '*').'</span><br>';
- //print $langs->trans("FieldsWithIsForPublic",'**').'<br>';
- print dol_get_fiche_head('');
- print '<script type="text/javascript">
- jQuery(document).ready(function () {
- jQuery(document).ready(function () {
- jQuery("#selectcountry_id").change(function() {
- document.newmember.action.value="create";
- document.newmember.submit();
- });
- });
- });
- </script>';
- // Type
- $partnershiptype = new PartnershipType($db);
- $listofpartnershipobj = $partnershiptype->fetchAll('', '', 1000, 0, array('active'=>1));
- $listofpartnership = array();
- foreach ($listofpartnershipobj as $partnershipobj) {
- $listofpartnership[$partnershipobj->id] = $partnershipobj->label;
- }
- if (getDolGlobalString('PARTNERSHIP_NEWFORM_FORCETYPE')) {
- print $listofpartnership[getDolGlobalString('PARTNERSHIP_NEWFORM_FORCETYPE')];
- print '<input type="hidden" id="partnershiptype" name="partnershiptype" value="' . getDolGlobalString('PARTNERSHIP_NEWFORM_FORCETYPE').'">';
- }
- print '<table class="border" summary="form to subscribe" id="tablesubscribe">'."\n";
- if (!getDolGlobalString('PARTNERSHIP_NEWFORM_FORCETYPE')) {
- print '<tr class="morphy"><td class="classfortooltip" title="'.dol_escape_htmltag($messagemandatory).'">'.$langs->trans('PartnershipType').' <span class="star">*</span></td><td>'."\n";
- print $form->selectarray("partnershiptype", $listofpartnership, GETPOSTISSET('partnershiptype') ? GETPOST('partnershiptype', 'int') : 'ifone', 1);
- print '</td></tr>'."\n";
- }
- // Company
- print '<tr id="trcompany" class="trcompany"><td class="classfortooltip" title="'.dol_escape_htmltag($messagemandatory).'">'.$langs->trans("Company").' <span class="star">*</span></td><td>';
- print img_picto('', 'company', 'class="pictofixedwidth"');
- print '<input type="text" name="societe" class="minwidth150 maxwidth300 widthcentpercentminusxx" value="'.dol_escape_htmltag(GETPOST('societe')).'"></td></tr>'."\n";
- // Lastname
- print '<tr><td class="classfortooltip" title="'.dol_escape_htmltag($messagemandatory).'">'.$langs->trans("Lastname").' <span class="star">*</span></td><td><input type="text" name="lastname" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('lastname')).'"></td></tr>'."\n";
- // Firstname
- print '<tr><td class="classfortooltip" title="'.dol_escape_htmltag($messagemandatory).'">'.$langs->trans("Firstname").' <span class="star">*</span></td><td><input type="text" name="firstname" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('firstname')).'"></td></tr>'."\n";
- // EMail
- print '<tr><td class="classfortooltip" title="'.dol_escape_htmltag($messagemandatory).'">'.$langs->trans("Email").' <span class="star">*</span></td><td>';
- //print img_picto('', 'email', 'class="pictofixedwidth"');
- print '<input type="text" name="email" maxlength="255" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('email')).'"></td></tr>'."\n";
- // Url
- print '<tr><td class="tdtop">'.$langs->trans("Url").' <span class="star">*</span></td><td>';
- print '<input type="text" name="url" maxlength="255" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('url')).'">';
- if (getDolGlobalString('PARTNERSHIP_BACKLINKS_TO_CHECK')) {
- $listofkeytocheck = explode('|', getDolGlobalString('PARTNERSHIP_BACKLINKS_TO_CHECK'));
- $i = 0;
- $s = '';
- foreach ($listofkeytocheck as $val) {
- $i++;
- $s .= ($s ? ($i == count($listofkeytocheck) ? ' '.$langs->trans("or").' ' : ', ') : '').$val;
- }
- print '<br><span class="opacitymedium small">'.$langs->trans("ThisUrlMustContainsAtLeastOneLinkToWebsite", $s).'</small>';
- }
- print '</td></tr>'."\n";
- // Address
- print '<tr><td class="tdtop">'.$langs->trans("Address").'</td><td>'."\n";
- print '<textarea name="address" id="address" wrap="soft" class="quatrevingtpercent" rows="'.ROWS_3.'">'.dol_escape_htmltag(GETPOST('address', 'restricthtml'), 0, 1).'</textarea></td></tr>'."\n";
- // Zip / Town
- print '<tr><td>'.$langs->trans('Zip').' / '.$langs->trans('Town').'</td><td>';
- print $formcompany->select_ziptown(GETPOST('zipcode'), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 6, 1);
- print ' / ';
- print $formcompany->select_ziptown(GETPOST('town'), 'town', array('zipcode', 'selectcountry_id', 'state_id'), 0, 1);
- print '</td></tr>';
- // Country
- print '<tr><td>'.$langs->trans('Country').'</td><td>';
- print img_picto('', 'country', 'class="pictofixedwidth"');
- $country_id = GETPOST('country_id', 'int');
- if (!$country_id && getDolGlobalString('PARTNERSHIP_NEWFORM_FORCECOUNTRYCODE')) {
- $country_id = getCountry($conf->global->PARTNERSHIP_NEWFORM_FORCECOUNTRYCODE, 2, $db, $langs);
- }
- if (!$country_id && !empty($conf->geoipmaxmind->enabled)) {
- $country_code = dol_user_country();
- //print $country_code;
- if ($country_code) {
- $new_country_id = getCountry($country_code, 3, $db, $langs);
- //print 'xxx'.$country_code.' - '.$new_country_id;
- if ($new_country_id) {
- $country_id = $new_country_id;
- }
- }
- }
- $country_code = getCountry($country_id, 2, $db, $langs);
- print $form->select_country($country_id, 'country_id');
- print '</td></tr>';
- // State
- if (!getDolGlobalString('SOCIETE_DISABLE_STATE')) {
- print '<tr><td class="wordbreak">'.$langs->trans('State').'</td><td>';
- if ($country_code) {
- print $formcompany->select_state(GETPOST("state_id"), $country_code);
- }
- print '</td></tr>';
- }
- // Logo
- //print '<tr><td>'.$langs->trans("URLPhoto").'</td><td><input type="text" name="photo" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('photo')).'"></td></tr>'."\n";
- // Other attributes
- $parameters['tdclass']='titlefieldauto';
- $parameters['tpl_context']='public'; // define template context to public
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
- // Comments
- print '<tr>';
- print '<td class="tdtop wordbreak">'.$langs->trans("Comments").'</td>';
- print '<td class="tdtop"><textarea name="note_private" id="note_private" wrap="soft" class="quatrevingtpercent" rows="'.ROWS_3.'">'.dol_escape_htmltag(GETPOST('note_private', 'restricthtml'), 0, 1).'</textarea></td>';
- print '</tr>'."\n";
- print "</table>\n";
- print dol_get_fiche_end();
- // Save
- print '<div class="center">';
- print '<input type="submit" value="'.$langs->trans("Submit").'" id="submitsave" class="button">';
- if (!empty($backtopage)) {
- print ' <input type="submit" value="'.$langs->trans("Cancel").'" id="submitcancel" class="button button-cancel">';
- }
- print '</div>';
- print "</form>\n";
- print "<br>";
- print '</div></div>';
- llxFooterVierge();
- $db->close();
|