dolibarr 18.0.6
website.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2006-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
33require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
34
35// Load translation files required by the page
36$langs->loadLangs(array("admin", "members"));
37
38$action = GETPOST('action', 'aZ09');
39
40$defaultoppstatus = getDolGlobalInt('PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD');
41
42if (!$user->admin) {
44}
45
46$error = 0;
47
48
49/*
50 * Actions
51 */
52
53if ($action == 'setPROJECT_ENABLE_PUBLIC') {
54 if (GETPOST('value')) {
55 dolibarr_set_const($db, 'PROJECT_ENABLE_PUBLIC', 1, 'chaine', 0, '', $conf->entity);
56 } else {
57 dolibarr_set_const($db, 'PROJECT_ENABLE_PUBLIC', 0, 'chaine', 0, '', $conf->entity);
58 }
59}
60
61if ($action == 'update') {
62 $public = GETPOST('PROJECT_ENABLE_PUBLIC');
63 $defaultoppstatus = GETPOST('PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD', 'int');
64
65 $res = dolibarr_set_const($db, "PROJECT_ENABLE_PUBLIC", $public, 'chaine', 0, '', $conf->entity);
66 $res = dolibarr_set_const($db, "PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD", $defaultoppstatus, 'chaine', 0, '', $conf->entity);
67
68 if (!($res > 0)) {
69 $error++;
70 }
71
72 if (!$error) {
73 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
74 } else {
75 setEventMessages($langs->trans("Error"), null, 'errors');
76 }
77}
78
79
80/*
81 * View
82 */
83
84$form = new Form($db);
85$formproject = new FormProjets($db);
86
87$title = $langs->trans("ProjectsSetup");
88$help_url = '';
89llxHeader('', $title, $help_url);
90
91
92$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
93print load_fiche_titre($title, $linkback, 'title_setup');
94
96
97$param = '';
98
99print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
100print '<input type="hidden" name="action" value="update">';
101print '<input type="hidden" name="token" value="'.newToken().'">';
102
103print dol_get_fiche_head($head, 'website', $langs->trans("Projects"), -1, 'project');
104
105
106print '<span class="opacitymedium">'.$langs->trans("LeadPublicFormDesc").'</span><br><br>';
107
108$param = '';
109
110$enabledisablehtml = $langs->trans("EnablePublicLeadForm").' ';
111if (empty($conf->global->PROJECT_ENABLE_PUBLIC)) {
112 // Button off, click to enable
113 $enabledisablehtml .= '<a class="reposition valignmiddle" href="'.$_SERVER["PHP_SELF"].'?action=setPROJECT_ENABLE_PUBLIC&token='.newToken().'&value=1'.$param.'">';
114 $enabledisablehtml .= img_picto($langs->trans("Disabled"), 'switch_off');
115 $enabledisablehtml .= '</a>';
116} else {
117 // Button on, click to disable
118 $enabledisablehtml .= '<a class="reposition valignmiddle" href="'.$_SERVER["PHP_SELF"].'?action=setPROJECT_ENABLE_PUBLIC&token='.newToken().'&value=0'.$param.'">';
119 $enabledisablehtml .= img_picto($langs->trans("Activated"), 'switch_on');
120 $enabledisablehtml .= '</a>';
121}
122print $enabledisablehtml;
123print '<input type="hidden" id="PROJECT_ENABLE_PUBLIC" name="PROJECT_ENABLE_PUBLIC" value="'.(empty($conf->global->PROJECT_ENABLE_PUBLIC) ? 0 : 1).'">';
124
125print '<br>';
126
127if (!empty($conf->global->PROJECT_ENABLE_PUBLIC)) {
128 print '<br>';
129
130 print '<div class="div-table-responsive-no-min">';
131 print '<table class="noborder centpercent">';
132
133 print '<tr class="liste_titre">';
134 print '<td>'.$langs->trans("Parameter").'</td>';
135 print '<td class="right">'.$langs->trans("Value").'</td>';
136 print "</tr>\n";
137
138 // Default opportunity status
139 print '<tr class="oddeven drag" id="trforcetype"><td>';
140 print $langs->trans("DefaultOpportunityStatus");
141 print '</td><td class="right">';
142 print $formproject->selectOpportunityStatus('PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD', GETPOSTISSET('PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD') ? GETPOST('PROJECT_DEFAULT_OPPORTUNITY_STATUS_FOR_ONLINE_LEAD', 'int') : $defaultoppstatus, 1, 0, 0, 0, '', 0, 1);
143 print "</td></tr>\n";
144
145 print '</table>';
146 print '</div>';
147
148 print '<div class="center">';
149 print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
150 print '</div>';
151}
152
153print dol_get_fiche_end();
154
155print '</form>';
156
157
158if (!empty($conf->global->PROJECT_ENABLE_PUBLIC)) {
159 print '<br>';
160 //print $langs->trans('FollowingLinksArePublic').'<br>';
161 print img_picto('', 'globe').' <span class="opacitymedium">'.$langs->trans('BlankSubscriptionForm').'</span><br>';
162 if (isModEnabled('multicompany')) {
163 $entity_qr = '?entity='.$conf->entity;
164 } else {
165 $entity_qr = '';
166 }
167
168 // Define $urlwithroot
169 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
170 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
171 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
172
173 print '<div class="urllink">';
174 print '<input type="text" id="publicurlmember" class="quatrevingtpercentminusx" value="'.$urlwithroot.'/public/project/new.php'.$entity_qr.'">';
175 print '<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.'/public/project/new.php'.$entity_qr.'">'.img_picto('', 'globe', 'class="paddingleft"').'</a>';
176 print '</div>';
177 print ajax_autoselect('publicurlmember');
178}
179
180// End of page
181llxFooter();
182$db->close();
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage building of HTML components.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
project_admin_prepare_head()
Prepare array with list of tabs.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.