26require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/website.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/website/class/website.class.php';
37$langs->loadlangs(array(
'errors',
'admin',
'companies',
'website'));
39$action =
GETPOST(
'action',
'alpha') ?
GETPOST(
'action',
'alpha') :
'view';
40$confirm =
GETPOST(
'confirm',
'alpha');
41$backtopage =
GETPOST(
'backtopage',
'alpha');
43$rowid =
GETPOST(
'rowid',
'alpha');
49$actl[0] =
img_picto($langs->trans(
"Disabled"),
'switch_off',
'class="size15x"');
50$actl[1] =
img_picto($langs->trans(
"Activated"),
'switch_on',
'class="size15x"');
54$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
55$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
57if (empty($page) || $page == -1) {
60$offset = $limit * $page;
64if (empty($sortfield)) {
65 $sortfield =
'position, ref';
67if (empty($sortorder)) {
72$hookmanager->initHooks(array(
'website'));
76$tabname[1] = MAIN_DB_PREFIX.
"website";
80$tablib[1] =
"Websites";
84$tabsql[1] =
"SELECT f.rowid as rowid, f.entity, f.ref, f.description, f.virtualhost, f.position, f.status, f.date_creation, f.lastaccess, f.pageviews_previous_month, f.pageviews_total FROM ".MAIN_DB_PREFIX.
'website as f WHERE f.entity IN ('.
getEntity(
'website').
')';
88$tabsqlsort[1] =
"ref ASC";
92$tabfield[1] =
"ref,description,virtualhost,position,date_creation,lastaccess,pageviews_previous_month,pageviews_total";
95$tabfieldvalue = array();
96$tabfieldvalue[1] =
"ref,description,virtualhost,position,entity";
99$tabfieldinsert = array();
100$tabfieldinsert[1] =
"ref,description,virtualhost,position,entity";
110$tabcond[1] = (isModEnabled(
'website'));
114$tabhelp[1] = array(
'ref' => $langs->trans(
"EnterAnyCode"),
'virtualhost' => $langs->trans(
"SetHereVirtualHost", DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/<i>websiteref</i>'));
117$tabfieldcheck = array();
118$tabfieldcheck[1] = array();
122$elementList = array();
123$sourceList = array();
135if (
GETPOST(
'actionadd',
'alpha') ||
GETPOST(
'actionmodify',
'alpha')) {
136 $listfield = explode(
',', $tabfield[$id]);
137 $listfieldinsert = explode(
',', $tabfieldinsert[$id]);
138 $listfieldmodify = explode(
',', $tabfieldinsert[$id]);
139 $listfieldvalue = explode(
',', $tabfieldvalue[$id]);
143 foreach ($listfield as $f => $value) {
144 if ($value ==
'ref' && (!GETPOSTISSET($value) ||
GETPOST($value) ==
'')) {
146 $fieldnamekey = $listfield[$f];
147 setEventMessages($langs->transnoentities(
"ErrorFieldRequired", $langs->transnoentities($fieldnamekey)),
null,
'errors');
149 } elseif ($value ==
'ref' && !preg_match(
'/^[a-z0-9_\-\.]+$/i',
GETPOST($value))) {
151 $fieldnamekey = $listfield[$f];
152 setEventMessages($langs->transnoentities(
"ErrorFieldCanNotContainSpecialCharacters", $langs->transnoentities($fieldnamekey)),
null,
'errors');
159 $websitekey = strtolower(
GETPOST(
'ref'));
165 if ($ok &&
GETPOST(
'actionadd',
'alpha')) {
166 if ($tabrowid[$id]) {
168 $sql =
"SELECT MAX(".$tabrowid[
$id].
") newid from ".$tabname[
$id];
169 $result = $db->query($sql);
171 $obj = $db->fetch_object($result);
172 $newid = ($obj->newid + 1);
185 $sql =
"INSERT INTO ".$tabname[
$id].
" (";
187 if ($tabrowid[$id] && !in_array($tabrowid[$id], $listfieldinsert)) {
188 $sql .= $tabrowid[
$id].
",";
190 $sql .= $tabfieldinsert[
$id];
191 $sql .=
", status, date_creation)";
195 if ($tabrowid[$id] && !in_array($tabrowid[$id], $listfieldinsert)) {
199 foreach ($listfieldinsert as $f => $value) {
200 if ($value ==
'entity') {
201 $_POST[$listfieldvalue[$i]] = $conf->entity;
203 if ($value ==
'ref') {
204 $_POST[$listfieldvalue[$i]] = strtolower(
GETPOST($listfieldvalue[$i]));
209 if (
GETPOST($listfieldvalue[$i]) ==
'') {
212 $sql .=
"'".$db->escape(
GETPOST($listfieldvalue[$i])).
"'";
216 $sql .=
", 1, '".$db->idate(
dol_now()).
"')";
219 $result = $db->query($sql);
224 if ($db->errno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
225 setEventMessages($langs->transnoentities(
"ErrorRecordAlreadyExists"),
null,
'errors');
233 if ($ok &&
GETPOST(
'actionmodify',
'alpha')) {
234 if ($tabrowid[$id]) {
235 $rowidcol = $tabrowid[
$id];
244 $website->fetch($rowid);
247 $sql =
"UPDATE ".$tabname[
$id].
" SET ";
249 if ($tabrowid[$id] && !in_array($tabrowid[$id], $listfieldmodify)) {
250 $sql .= $tabrowid[
$id].
"=";
251 $sql .=
"'".$db->escape($rowid).
"', ";
254 foreach ($listfieldmodify as $field) {
255 if ($field ==
'entity') {
256 $_POST[$listfieldvalue[$i]] = $conf->entity;
262 if (
GETPOST($listfieldvalue[$i]) ==
'') {
265 $sql .=
"'".$db->escape(
GETPOST($listfieldvalue[$i])).
"'";
269 $sql .=
" WHERE ".$rowidcol.
" = ".((int) $rowid);
273 $resql = $db->query($sql);
276 if ($newname != $website->ref) {
277 $srcfile = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$website->ref;
278 $destfile = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$newname;
282 setEventMessages($langs->trans(
'ErrorDirAlreadyExists', $destfile),
null,
'errors');
284 @rename($srcfile, $destfile);
287 $arrayreplacement = array($website->ref.
'/htmlheader.html' => $newname.
'/htmlheader.html');
288 $listofilestochange =
dol_dir_list($destfile,
'files', 0,
'\.php$');
289 foreach ($listofilestochange as $key => $value) {
307if ($action ==
'confirm_delete' && $confirm ==
'yes') {
308 if ($tabrowid[$id]) {
309 $rowidcol = $tabrowid[
$id];
315 $website->fetch($rowid);
317 if ($website->id > 0) {
318 $sql =
"DELETE from ".MAIN_DB_PREFIX.
"website_account WHERE fk_website = ".((int) $rowid);
319 $result = $db->query($sql);
321 $sql =
"DELETE from ".MAIN_DB_PREFIX.
"website_page WHERE fk_website = ".((int) $rowid);
322 $result = $db->query($sql);
324 $sql =
"DELETE from ".MAIN_DB_PREFIX.
"website_extrafields WHERE fk_object = ".((int) $rowid);
325 $result = $db->query($sql);
327 $sql =
"DELETE from ".MAIN_DB_PREFIX.
"website WHERE rowid = ".((int) $rowid);
328 $result = $db->query($sql);
330 if ($db->errno() ==
'DB_ERROR_CHILD_EXISTS') {
331 setEventMessages($langs->transnoentities(
"ErrorRecordIsUsedByChild"),
null,
'errors');
346if ($action == $acts[0]) {
347 if ($tabrowid[$id]) {
348 $rowidcol = $tabrowid[
$id];
354 $sql =
"UPDATE ".$tabname[
$id].
" SET status = 1 WHERE rowid = ".((int) $rowid);
360 $result = $db->query($sql);
370if ($action == $acts[1]) {
371 if ($tabrowid[$id]) {
372 $rowidcol = $tabrowid[
$id];
378 $sql =
"UPDATE ".$tabname[
$id].
" SET status = 0 WHERE rowid = ".((int) $rowid);
384 $result = $db->query($sql);
399$form =
new Form($db);
402llxHeader(
'', $langs->trans(
"WebsiteSetup"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-website');
404$titre = $langs->trans(
"WebsiteSetup");
405$linkback =
'<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.
'/admin/modules.php').
'">'.$langs->trans(
"BackToModuleList").
'</a>';
412$head[$h][0] = DOL_URL_ROOT.
"/admin/website.php";
413$head[$h][1] = $langs->trans(
"WebSites");
414$head[$h][2] =
'website';
417$head[$h][0] = DOL_URL_ROOT.
"/admin/website_options.php";
418$head[$h][1] = $langs->trans(
"Options");
419$head[$h][2] =
'options';
425print
'<span class="opacitymedium">'.$langs->trans(
"WebsiteSetupDesc").
'</span><br>';
430if ($action ==
'delete') {
431 print $form->formconfirm($_SERVER[
"PHP_SELF"].
'?'.($page ?
'page='.$page.
'&' :
'').
'sortfield='.$sortfield.
'&sortorder='.$sortorder.
'&rowid='.$rowid, $langs->trans(
'DeleteWebsite'), $langs->trans(
'ConfirmDeleteWebsite'),
'confirm_delete',
'', 0, 1, 220);
441 $sql .= $db->order($sortfield, $sortorder);
442 $sql .= $db->plimit($limit + 1, $offset);
445 $fieldlist = explode(
',', $tabfield[$id]);
447 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
448 print
'<input type="hidden" name="token" value="'.newToken().
'">';
449 print
'<table class="noborder centpercent">';
454 print
'<tr class="liste_titre">';
455 foreach ($fieldlist as $field => $value) {
456 if (in_array($fieldlist[$field], array(
'date_creation',
'lastaccess',
'pageviews_previous_month',
'pageviews_month',
'pageviews_total'))) {
462 $valuetoshow = ucfirst($fieldlist[$field]);
463 $valuetoshow = $langs->trans($valuetoshow);
465 if ($fieldlist[$field] ==
'lang') {
466 $valuetoshow = $langs->trans(
"Language");
468 if ($valuetoshow !=
'') {
469 print
'<td class="'.$align.
'">';
470 if (!empty($tabhelp[$id][$value]) && preg_match(
'/^http(s*):/i', $tabhelp[$id][$value])) {
471 print
'<a href="'.$tabhelp[
$id][$value].
'" target="_blank" rel="noopener noreferrer">'.$valuetoshow.
' '.
img_help(1, $valuetoshow).
'</a>';
472 } elseif (!empty($tabhelp[$id][$value])) {
473 if ($value ==
'virtualhost') {
474 print $form->textwithpicto($valuetoshow, $tabhelp[$id][$value], 1,
'help',
'', 0, 2,
'tooltipvirtual');
476 print $form->textwithpicto($valuetoshow, $tabhelp[$id][$value]);
485 print
'<td colspan="4">';
490 print
'<tr class="oddeven">';
494 if (
GETPOST(
'actionadd',
'alpha')) {
495 foreach ($fieldlist as $key => $val) {
501 if (!isset($obj->position)) {
507 print
'<td colspan="3" class="right">';
508 if ($action !=
'edit') {
509 print
'<input type="submit" class="button button-add" name="actionadd" value="'.$langs->trans(
"Add").
'">';
520 $resql = $db->query($sql);
522 $num = $db->num_rows($resql);
527 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
528 print
'<input type="hidden" name="token" value="'.newToken().
'">';
529 print
'<input type="hidden" name="page" value="'.$page.
'">';
530 print
'<input type="hidden" name="rowid" value="'.$rowid.
'">';
532 print
'<div class="div-table-responsive">';
533 print
'<table class="noborder centpercent">';
536 print
'<tr class="liste_titre">';
537 foreach ($fieldlist as $field => $value) {
544 if (in_array($fieldlist[$field], array(
'pageviews_total',
'pageviews_previous_month'))) {
555 $valuetoshow = ucfirst($fieldlist[$field]);
556 $valuetoshow = $langs->trans($valuetoshow);
557 if ($fieldlist[$field] ==
'lang') {
558 $valuetoshow = $langs->trans(
"Language");
560 if ($fieldlist[$field] ==
'type') {
561 $valuetoshow = $langs->trans(
"Type");
563 if ($fieldlist[$field] ==
'code') {
564 $valuetoshow = $langs->trans(
"Code");
566 if ($fieldlist[$field] ==
'date_creation') {
567 $valuetoshow = $langs->trans(
"DateCreation");
569 if ($fieldlist[$field] ==
'lastaccess') {
570 $valuetoshow = $langs->trans(
"LastAccess");
572 if ($fieldlist[$field] ==
'pageviews_previous_month') {
573 $valuetoshow = $langs->trans(
"PagesViewedPreviousMonth");
575 if ($fieldlist[$field] ==
'pageviews_total') {
576 $valuetoshow = $langs->trans(
"PagesViewedTotal");
581 print
getTitleFieldOfList($valuetoshow, 0, $_SERVER[
"PHP_SELF"], ($sortable ? $fieldlist[$field] :
''), ($page ?
'page='.$page.
'&' :
''),
"",
'', $sortfield, $sortorder, $align.
' ');
586 print
getTitleFieldOfList($langs->trans(
"Status"), 0, $_SERVER[
"PHP_SELF"],
"status", ($page ?
'page='.$page.
'&' :
''),
"",
'', $sortfield, $sortorder,
'center ');
593 $obj = $db->fetch_object($resql);
595 print
'<tr class="oddeven" id="rowid-'.$obj->rowid.
'">';
596 if ($action ==
'edit' && ($rowid == (!empty($obj->rowid) ? $obj->rowid : $obj->code))) {
598 $parameters = array(
'fieldlist' => $fieldlist,
'tabname' => $tabname[$id]);
599 $reshook = $hookmanager->executeHooks(
'editWebsiteFieldlist', $parameters, $obj, $tmpaction);
600 $error = $hookmanager->error;
601 $errors = $hookmanager->errors;
603 if (empty($reshook)) {
607 print
'<td colspan="7" class="right"><a name="'.(!empty($obj->rowid) ? $obj->rowid : $obj->code).
'"> </a>';
608 print
'<input type="submit" class="button button-edit small" name="actionmodify" value="'.$langs->trans(
"Modify").
'">';
610 print
'<input type="submit" class="button button-cancel small" name="actioncancel" value="'.$langs->trans(
"Cancel").
'">';
614 $parameters = array(
'fieldlist' => $fieldlist,
'tabname' => $tabname[$id]);
615 $reshook = $hookmanager->executeHooks(
'viewWebsiteFieldlist', $parameters, $obj, $tmpaction);
617 $error = $hookmanager->error;
618 $errors = $hookmanager->errors;
620 if (empty($reshook)) {
621 foreach ($fieldlist as $field => $value) {
623 $fieldname = $fieldlist[$field];
625 if (in_array($fieldname, array(
'pageviews_total',
'pageviews_previous_month'))) {
628 $valuetoshow = $obj->$fieldname;
632 print
'<td class="'.$align.
'">'.$valuetoshow.
'</td>';
644 $url = $_SERVER[
"PHP_SELF"].
'?'.($page ?
'page='.$page.
'&' :
'').
'sortfield='.$sortfield.
'&sortorder='.$sortorder.
'&rowid='.(!empty($obj->rowid) ? $obj->rowid : (!empty($obj->code) ? $obj->code :
'')).
'&code='.(!empty($obj->code) ? urlencode($obj->code) :
'').
'&';
648 print
'<td align="center" class="nowrap">';
649 print
'<a class="reposition" href="'.$url.
'action='.$acts[($obj->status ? 1 : 0)].
'&token='.
newToken().
'">'.$actl[($obj->status ? 1 : 0)].
'</a>';
653 print
'<td align="center"><a class="reposition editfielda" href="'.$url.
'action=edit&token='.
newToken().
'">'.
img_edit().
'</a></td>';
657 print
'<td align="center"><a class="reposition" href="'.$url.
'action=delete&token='.
newToken().
'">'.
img_delete().
'</a></td>';
659 print
'<td class="center">'.img_delete($langs->trans(
"DisableSiteFirst"),
'class="opacitymedium"').
'</td>';
695 global $conf, $langs, $db;
698 global $elementList, $sourceList, $localtax_typeList;
703 foreach ($fieldlist as $field => $value) {
704 if (in_array($fieldlist[$field], array(
'lastaccess',
'pageviews_previous_month',
'pageviews_month',
'pageviews_total'))) {
708 $fieldname = $fieldlist[$field];
710 if ($fieldlist[$field] ==
'lang') {
714 } elseif ($fieldlist[$field] ==
'code' && isset($obj->$fieldname)) {
715 print
'<td><input type="text" class="flat" value="'.(!empty($obj->$fieldname) ? $obj->$fieldname :
'').
'" size="10" name="'.$fieldlist[$field].
'"></td>';
717 if ($fieldlist[$field] ==
'date_creation') {
723 if ($fieldlist[$field] ==
'code') {
726 if ($fieldlist[$field] ==
'position') {
729 if ($fieldlist[$field] ==
'libelle') {
730 $size =
'size="32" ';
732 if ($fieldlist[$field] ==
'tracking') {
733 $size =
'size="92" ';
735 if ($fieldlist[$field] ==
'sortorder') {
738 print
'<input type="text" '.$size.
' class="flat" value="'.(isset($obj->$fieldname) ? $obj->$fieldname :
'').
'" name="'.$fieldlist[$field].
'">';
fieldListWebsites($fieldlist, $obj=null, $tabname='', $context='')
Show fields in insert/edit mode.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_is_dir($folder)
Test if filename is a directory.
dolReplaceInFile($srcfile, $arrayreplacement, $destfile='', $newmask='0', $indexdatabase=0, $arrayreplacementisregex=0)
Make replacement of strings into a file.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_help($usehelpcursor=1, $usealttitle=1)
Show help logo with cursor "?".
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
dol_now($mode='auto')
Return date for now.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
$context
@method int call_trigger(string $triggerName, User $user)
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.