dolibarr
21.0.0-alpha
Main Page
Related Pages
Topics
Classes
Files
File List
File Members
dolibarr_dev
htdocs
dav
dav.lib.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (C) 2018 Destailleur Laurent <eldy@users.sourceforge.net>
3
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation; either version 3 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17
*/
18
25
// define CDAV_CONTACT_TAG if not
26
if
(!defined(
'CDAV_CONTACT_TAG'
)) {
27
if
(
getDolGlobalString
(
'CDAV_CONTACT_TAG'
)) {
28
define(
'CDAV_CONTACT_TAG'
,
getDolGlobalString
(
'CDAV_CONTACT_TAG'
));
29
}
else
{
30
define(
'CDAV_CONTACT_TAG'
,
''
);
31
}
32
}
33
34
// define CDAV_URI_KEY if not
35
if
(!defined(
'CDAV_URI_KEY'
)) {
36
if
(
getDolGlobalString
(
'CDAV_URI_KEY'
)) {
37
define(
'CDAV_URI_KEY'
,
getDolGlobalString
(
'CDAV_URI_KEY'
));
38
}
else
{
39
define(
'CDAV_URI_KEY'
, substr(md5($_SERVER[
'HTTP_HOST'
]), 0, 8));
40
}
41
}
42
43
44
45
51
function
dav_admin_prepare_head
()
52
{
53
global $db, $langs, $conf;
54
55
$h = 0;
56
$head = array();
57
58
$head[$h][0] = DOL_URL_ROOT.
'/admin/dav.php'
;
59
$head[$h][1] = $langs->trans(
"WebDAV"
);
60
$head[$h][2] =
'webdav'
;
61
$h++;
62
63
// Show more tabs from modules
64
// Entries must be declared in modules descriptor with line
65
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
66
// $this->tabs = array('entity:-tabname); to remove a tab
67
complete_head_from_modules
($conf, $langs,
null
, $head, $h,
'admindav'
);
68
69
complete_head_from_modules
($conf, $langs,
null
, $head, $h,
'admindav'
,
'remove'
);
70
71
return
$head;
72
}
dav_admin_prepare_head
if(!defined('CDAV_CONTACT_TAG')) if(!defined( 'CDAV_URI_KEY')) dav_admin_prepare_head()
Prepare array with list of tabs.
Definition
dav.lib.php:51
complete_head_from_modules
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
Definition
functions.lib.php:11003
getDolGlobalString
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
Definition
functions.lib.php:217
Generated on Fri Nov 1 2024 01:00:29 for
dolibarr
by Doxygen 1.11.0