mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 17:18:13 +01:00
* Qual: Fix Array of tabs typing hints # Qual: Fix Array of tabs typing hints Fixed same typing hints accross several files * Qual: Fix pdf.lib.php, project.lib.php and related files # Qual: Fix pdf.lib.php, project.lib.php and related files Fix most phan notices for pdf.lib.php and project.lib.php. And fixed some items in other files in the process * Qual: Fix notifications commande/card advtarget.tpl fichinter/card societe/card supplier_proposal/card * Qual: Fix notices for FormSms, RssParser, ExpenseReportIk and related # Qual: Fix notices for FormSms, RssParser, ExpenseReportIk and related Fix notices in the files for the classes above and other files to accomodate these changes/fixes
73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2018 Destailleur Laurent <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.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/dav/dav.lib.php
|
|
* \ingroup dav
|
|
* \brief Server DAV
|
|
*/
|
|
|
|
// define CDAV_CONTACT_TAG if not
|
|
if (!defined('CDAV_CONTACT_TAG')) {
|
|
if (getDolGlobalString('CDAV_CONTACT_TAG')) {
|
|
define('CDAV_CONTACT_TAG', getDolGlobalString('CDAV_CONTACT_TAG'));
|
|
} else {
|
|
define('CDAV_CONTACT_TAG', '');
|
|
}
|
|
}
|
|
|
|
// define CDAV_URI_KEY if not
|
|
if (!defined('CDAV_URI_KEY')) {
|
|
if (getDolGlobalString('CDAV_URI_KEY')) {
|
|
define('CDAV_URI_KEY', getDolGlobalString('CDAV_URI_KEY'));
|
|
} else {
|
|
define('CDAV_URI_KEY', substr(md5($_SERVER['HTTP_HOST']), 0, 8));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Prepare array with list of tabs
|
|
*
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
|
*/
|
|
function dav_admin_prepare_head()
|
|
{
|
|
global $db, $langs, $conf;
|
|
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/admin/dav.php';
|
|
$head[$h][1] = $langs->trans("WebDAV");
|
|
$head[$h][2] = 'webdav';
|
|
$h++;
|
|
|
|
// Show more tabs from modules
|
|
// Entries must be declared in modules descriptor with line
|
|
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
|
|
// $this->tabs = array('entity:-tabname); to remove a tab
|
|
complete_head_from_modules($conf, $langs, null, $head, $h, 'admindav');
|
|
|
|
complete_head_from_modules($conf, $langs, null, $head, $h, 'admindav', 'remove');
|
|
|
|
return $head;
|
|
}
|