dolibarr  13.0.2
dav.lib.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2018 Destailleur Laurent <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 // define CDAV_CONTACT_TAG if not
25 if (!defined('CDAV_CONTACT_TAG'))
26 {
27  if (isset($conf->global->CDAV_CONTACT_TAG))
28  define('CDAV_CONTACT_TAG', $conf->global->CDAV_CONTACT_TAG);
29  else define('CDAV_CONTACT_TAG', '');
30 }
31 
32 // define CDAV_URI_KEY if not
33 if (!defined('CDAV_URI_KEY'))
34 {
35  if (isset($conf->global->CDAV_URI_KEY))
36  define('CDAV_URI_KEY', $conf->global->CDAV_URI_KEY);
37  else define('CDAV_URI_KEY', substr(md5($_SERVER['HTTP_HOST']), 0, 8));
38 }
39 
40 
41 
42 
49 {
50  global $db, $langs, $conf;
51 
52  $h = 0;
53  $head = array();
54 
55  $head[$h][0] = DOL_URL_ROOT.'/admin/dav.php?id='.$object->id;
56  $head[$h][1] = $langs->trans("WebDAV");
57  $head[$h][2] = 'webdav';
58  $h++;
59 
60  // Show more tabs from modules
61  // Entries must be declared in modules descriptor with line
62  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
63  // $this->tabs = array('entity:-tabname); to remove a tab
64  complete_head_from_modules($conf, $langs, null, $head, $h, 'admindav');
65 
66  complete_head_from_modules($conf, $langs, null, $head, $h, 'admindav', 'remove');
67 
68  return $head;
69 }
if(!defined('CDAV_CONTACT_TAG')) if(!defined('CDAV_URI_KEY')) dav_admin_prepare_head()
Prepare array with list of tabs.
Definition: dav.lib.php:48
print $_SERVER["PHP_SELF"]
Edit parameters.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode= 'add')
Complete or removed entries into a head array (used to build tabs).