123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <?php
- /* Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2015-2016 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
- * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- *
- * 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 <http://www.gnu.org/licenses/>.
- * or see http://www.gnu.org/
- */
- /**
- * \file htdocs/core/lib/member.lib.php
- * \brief Functions for module members
- */
- /**
- * Return array head with list of tabs to view object informations
- *
- * @param Adherent $object Member
- * @return array head
- */
- function member_prepare_head(Adherent $object)
- {
- global $db, $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/adherents/card.php?rowid='.$object->id;
- $head[$h][1] = $langs->trans("Card");
- $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/subscription.php?rowid='.$object->id;
- $head[$h][1] = $langs->trans("Subscriptions");
- $head[$h][2] = 'subscription';
- $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');
- $nbNote = 0;
- if(!empty($object->note)) $nbNote++;
- if(!empty($object->note_private)) $nbNote++;
- if(!empty($object->note_public)) $nbNote++;
- $head[$h][0] = DOL_URL_ROOT.'/adherents/note.php?id='.$object->id;
- $head[$h][1] = $langs->trans("Note");
- $head[$h][2] = 'note';
- if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>';
- $h++;
- // Attachments
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
- $upload_dir = $conf->adherent->multidir_output[$object->entity].'/'.get_exdir(0,0,0,1,$object,'member');
- $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.'/adherents/document.php?id='.$object->id;
- $head[$h][1] = $langs->trans('Documents');
- if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>';
- $head[$h][2] = 'document';
- $h++;
- // Show agenda tab
- if (! empty($conf->agenda->enabled))
- {
- $head[$h][0] = DOL_URL_ROOT."/adherents/agenda.php?id=".$object->id;
- $head[$h][1] = $langs->trans("Events");
- if (! empty($conf->agenda->enabled) && (!empty($user->rights->agenda->myactions->read) || !empty($user->rights->agenda->allactions->read) ))
- {
- $head[$h][1].= '/';
- $head[$h][1].= $langs->trans("Agenda");
- }
- $head[$h][2] = 'agenda';
- $h++;
- }
-
- complete_head_from_modules($conf,$langs,$object,$head,$h,'member','remove');
- return $head;
- }
- /**
- * Return array head with list of tabs to view object informations
- *
- * @param AdherentType $object Member
- * @return array head
- */
- function member_type_prepare_head(AdherentType $object)
- {
- global $langs, $conf, $user;
- $h=0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/adherents/type.php?rowid='.$object->id;
- $head[$h][1] = $langs->trans("Card");
- $head[$h][2] = 'card';
- $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,'membertype');
- complete_head_from_modules($conf,$langs,$object,$head,$h,'membertype','remove');
- return $head;
- }
- /**
- * Return array head with list of tabs to view object informations
- *
- * @return array head
- */
- function member_admin_prepare_head()
- {
- global $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/adherents/admin/adherent.php';
- $head[$h][1] = $langs->trans("Miscellaneous");
- $head[$h][2] = 'general';
- $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,'',$head,$h,'member_admin');
- $head[$h][0] = DOL_URL_ROOT.'/adherents/admin/adherent_extrafields.php';
- $head[$h][1] = $langs->trans("ExtraFieldsMember");
- $head[$h][2] = 'attributes';
- $h++;
- $head[$h][0] = DOL_URL_ROOT.'/adherents/admin/adherent_type_extrafields.php';
- $head[$h][1] = $langs->trans("ExtraFieldsMemberType");
- $head[$h][2] = 'attributes_type';
- $h++;
- $head[$h][0] = DOL_URL_ROOT.'/adherents/admin/public.php';
- $head[$h][1] = $langs->trans("BlankSubscriptionForm");
- $head[$h][2] = 'public';
- $h++;
- complete_head_from_modules($conf,$langs,'',$head,$h,'member_admin','remove');
- return $head;
- }
- /**
- * Return array head with list of tabs to view object stats informations
- *
- * @param Adherent $object Member or null
- * @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=memberbyregion';
- $head[$h][1] = $langs->trans("Region");
- $head[$h][2] = 'statsregion';
- $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++;
- $head[$h][0] = DOL_URL_ROOT.'/adherents/stats/byproperties.php';
- $head[$h][1] = $langs->trans('ByProperties');
- $head[$h][2] = 'statsbyproperties';
- $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,$object,$head,$h,'member_stats');
- complete_head_from_modules($conf,$langs,$object,$head,$h,'member_stats','remove');
- return $head;
- }
- /**
- * Return array head with list of tabs to view object informations
- *
- * @param Subscription $object Subscription
- * @return array head
- */
- function subscription_prepare_head(Subscription $object)
- {
- global $db, $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/card.php?rowid='.$object->id;
- $head[$h][1] = $langs->trans("Card");
- $head[$h][2] = 'general';
- $h++;
- $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/info.php?rowid='.$object->id;
- $head[$h][1] = $langs->trans("Info");
- $head[$h][2] = 'info';
- $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,'subscription');
- complete_head_from_modules($conf,$langs,$object,$head,$h,'subscription','remove');
- return $head;
- }
|