dolibarr/htdocs/partnership/lib/partnership.lib.php

147 lines
4.9 KiB
PHP
Raw Permalink Normal View History

2021-04-03 10:24:07 +02:00
<?php
/* Copyright (C) 2021 Dorian Laurent <i.merraha@sofimedmaroc.com>
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
2021-04-03 10:24:07 +02:00
*
* 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/partnership/lib/partnership.lib.php
2021-04-03 10:24:07 +02:00
* \ingroup partnership
* \brief Library files with common functions for Partnership
*/
/**
* Prepare admin pages header
*
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
2021-04-03 10:24:07 +02:00
*/
function partnershipAdminPrepareHead()
{
2022-11-30 22:01:37 +01:00
global $langs, $conf, $db;
2021-04-03 10:24:07 +02:00
2022-05-10 16:50:33 +02:00
$langs->loadLangs(array("members", "partnership"));
2021-04-03 10:24:07 +02:00
2022-11-30 22:01:37 +01:00
$extrafields = new ExtraFields($db);
$extrafields->fetch_name_optionals_label('partnership');
2021-04-03 10:24:07 +02:00
$h = 0;
$head = array();
$head[$h][0] = DOL_URL_ROOT . '/partnership/admin/setup.php';
2021-04-03 10:24:07 +02:00
$head[$h][1] = $langs->trans("Settings");
$head[$h][2] = 'settings';
$h++;
2021-04-03 10:29:04 +02:00
$head[$h][0] = DOL_URL_ROOT . '/partnership/admin/partnership_extrafields.php';
2021-04-03 10:24:07 +02:00
$head[$h][1] = $langs->trans("ExtraFields");
2022-11-30 22:01:37 +01:00
$nbExtrafields = $extrafields->attributes['partnership']['count'];
if ($nbExtrafields > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">' . $nbExtrafields . '</span>';
2022-11-30 22:01:37 +01:00
}
$head[$h][2] = 'partnership_extrafields';
2021-04-03 10:24:07 +02:00
$h++;
2021-04-03 10:29:04 +02:00
$head[$h][0] = DOL_URL_ROOT . '/partnership/admin/website.php';
2021-10-15 10:01:07 +02:00
$head[$h][1] = $langs->trans("BlankSubscriptionForm");
$head[$h][2] = 'website';
$h++;
2021-04-03 10:24:07 +02:00
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
//$this->tabs = array(
// 'entity:+tabname:Title:@partnership:/partnership/mypage.php?id=__ID__'
//); // to add new tab
//$this->tabs = array(
// 'entity:-tabname:Title:@partnership:/partnership/mypage.php?id=__ID__'
//); // to remove a tab
complete_head_from_modules($conf, $langs, null, $head, $h, 'partnership');
2022-09-22 14:06:50 +02:00
complete_head_from_modules($conf, $langs, null, $head, $h, 'partnership', 'remove');
2021-04-03 10:24:07 +02:00
return $head;
}
/**
* Prepare array of tabs for Partnership
*
* @param Partnership $object Partnership
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
2021-04-03 10:24:07 +02:00
*/
function partnershipPrepareHead($object)
{
global $db, $langs, $conf;
2021-04-28 23:01:20 +02:00
$langs->load("partnership");
2021-04-03 10:24:07 +02:00
$h = 0;
$head = array();
$head[$h][0] = DOL_URL_ROOT . '/partnership/partnership_card.php?id=' . $object->id;
2021-04-03 10:24:07 +02:00
$head[$h][1] = $langs->trans("Card");
$head[$h][2] = 'card';
$h++;
if (isset($object->fields['note_public']) || isset($object->fields['note_private'])) {
$nbNote = 0;
if (!empty($object->note_private)) {
$nbNote++;
}
if (!empty($object->note_public)) {
$nbNote++;
}
$head[$h][0] = DOL_URL_ROOT . '/partnership/partnership_note.php?id=' . $object->id;
2021-04-03 10:24:07 +02:00
$head[$h][1] = $langs->trans('Notes');
if ($nbNote > 0) {
$head[$h][1] .= (!getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER') ? '<span class="badge marginleftonlyshort">' . $nbNote . '</span>' : '');
2021-04-03 10:24:07 +02:00
}
$head[$h][2] = 'note';
$h++;
}
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT . '/core/class/link.class.php';
$upload_dir = $conf->partnership->dir_output . "/partnership/" . dol_sanitizeFileName($object->ref);
2021-04-03 10:24:07 +02:00
$nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
$nbLinks = Link::count($db, $object->element, $object->id);
$head[$h][0] = DOL_URL_ROOT . '/partnership/partnership_document.php?id=' . $object->id;
2021-04-03 10:24:07 +02:00
$head[$h][1] = $langs->trans('Documents');
if (($nbFiles + $nbLinks) > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">' . ($nbFiles + $nbLinks) . '</span>';
2021-04-03 10:24:07 +02:00
}
$head[$h][2] = 'document';
$h++;
$head[$h][0] = DOL_URL_ROOT . '/partnership/partnership_agenda.php?id=' . $object->id;
2021-11-12 14:57:36 +01:00
$head[$h][1] = $langs->trans("Events");
$head[$h][2] = 'agenda';
$h++;
2021-04-03 10:24:07 +02:00
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
//$this->tabs = array(
// 'entity:+tabname:Title:@partnership:/partnership/mypage.php?id=__ID__'
//); // to add new tab
//$this->tabs = array(
// 'entity:-tabname:Title:@partnership:/partnership/mypage.php?id=__ID__'
//); // to remove a tab
2021-04-28 23:01:20 +02:00
complete_head_from_modules($conf, $langs, $object, $head, $h, 'partnership');
2021-04-03 10:24:07 +02:00
2021-04-28 23:01:20 +02:00
complete_head_from_modules($conf, $langs, $object, $head, $h, 'partnership', 'remove');
2021-04-03 10:24:07 +02:00
return $head;
2021-04-03 10:29:04 +02:00
}