forked from Wavyzz/dolibarr
174 lines
5.6 KiB
PHP
174 lines
5.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/lib/member.lib.php
|
|
* \brief Ensemble de fonctions de base pour les adherents
|
|
* \version $Id: member.lib.php,v 1.24 2011/07/03 16:00:19 eldy Exp $
|
|
*
|
|
* Ensemble de fonctions de base de dolibarr sous forme d'include
|
|
*/
|
|
|
|
/**
|
|
* Return array head with list of tabs to view object informations
|
|
* @param object Member
|
|
* @return array head
|
|
*/
|
|
function member_prepare_head($object)
|
|
{
|
|
global $langs, $conf, $user;
|
|
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/fiche.php?rowid='.$object->id;
|
|
$head[$h][1] = $langs->trans("MemberCard");
|
|
$head[$h][2] = 'general';
|
|
$h++;
|
|
|
|
if (! empty($conf->ldap->enabled) && ! empty($conf->global->LDAP_MEMBER_ACTIVE))
|
|
{
|
|
$langs->load("ldap");
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/ldap.php?id='.$object->id;
|
|
$head[$h][1] = $langs->trans("LDAPCard");
|
|
$head[$h][2] = 'ldap';
|
|
$h++;
|
|
}
|
|
|
|
if (! empty($user->rights->adherent->cotisation->lire))
|
|
{
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/card_subscriptions.php?rowid='.$object->id;
|
|
$head[$h][1] = $langs->trans("Subscriptions");
|
|
$head[$h][2] = 'subscription';
|
|
$h++;
|
|
}
|
|
|
|
// Show category tab
|
|
if (! empty($conf->categorie->enabled) && ! empty($user->rights->categorie->lire))
|
|
{
|
|
$head[$h][0] = DOL_URL_ROOT."/categories/categorie.php?id=".$object->id.'&type=3';
|
|
$head[$h][1] = $langs->trans('Categories');
|
|
$head[$h][2] = 'category';
|
|
$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:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
|
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'member');
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/note.php?id='.$object->id;
|
|
$head[$h][1] = $langs->trans("Note");
|
|
$head[$h][2] = 'note';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/document.php?id='.$object->id;
|
|
$head[$h][1] = $langs->trans("Documents");
|
|
$head[$h][2] = 'document';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/info.php?id='.$object->id;
|
|
$head[$h][1] = $langs->trans("Info");
|
|
$head[$h][2] = 'info';
|
|
$h++;
|
|
|
|
return $head;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return array head with list of tabs to view object informations
|
|
* @param object Member
|
|
* @return array head
|
|
*/
|
|
function member_admin_prepare_head($object)
|
|
{
|
|
global $langs, $conf, $user;
|
|
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/adherent.php';
|
|
$head[$h][1] = $langs->trans("Miscellanous");
|
|
$head[$h][2] = 'general';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/adherent_extrafields.php';
|
|
$head[$h][1] = $langs->trans("ExtraFields");
|
|
$head[$h][2] = 'attributes';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/public.php';
|
|
$head[$h][1] = $langs->trans("BlankSubscriptionForm");
|
|
$head[$h][2] = 'public';
|
|
$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:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
|
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'member_admin');
|
|
|
|
return $head;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return array head with list of tabs to view object stats informations
|
|
* @param object Member
|
|
* @return array head
|
|
*/
|
|
function member_stats_prepare_head($object)
|
|
{
|
|
global $langs, $conf, $user;
|
|
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/stats/index.php';
|
|
$head[$h][1] = $langs->trans("Subscriptions");
|
|
$head[$h][2] = 'statssubscription';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/stats/geo.php?mode=memberbycountry';
|
|
$head[$h][1] = $langs->trans("Country");
|
|
$head[$h][2] = 'statscountry';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/stats/geo.php?mode=memberbystate';
|
|
$head[$h][1] = $langs->trans("State");
|
|
$head[$h][2] = 'statsstate';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/stats/geo.php?mode=memberbytown';
|
|
$head[$h][1] = $langs->trans('Town');
|
|
$head[$h][2] = 'statstown';
|
|
$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:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
|
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'member_stats');
|
|
|
|
return $head;
|
|
}
|
|
?>
|