29 require
'../main.inc.php';
31 require_once DOL_DOCUMENT_ROOT .
'/contact/class/contact.class.php';
32 require_once DOL_DOCUMENT_ROOT .
'/core/class/html.formcompany.class.php';
33 require_once DOL_DOCUMENT_ROOT .
'/hrm/class/skill.class.php';
34 require_once DOL_DOCUMENT_ROOT .
'/hrm/lib/hrm_skill.lib.php';
38 $langs->loadLangs(array(
'hrm',
'companies',
'other',
'mails'));
44 $lineid =
GETPOST(
'lineid',
'int');
45 $socid =
GETPOST(
'socid',
'int');
46 $action =
GETPOST(
'action',
'aZ09');
49 $object =
new Skill($db);
51 $diroutputmassaction = $conf->hrm->dir_output.
'/temp/massgeneration/'.$user->id;
52 $hookmanager->initHooks(array(
'skillcontact',
'globalcard'));
54 $extrafields->fetch_name_optionals_label($object->table_element);
57 include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
60 $permission = $user->rights->hrm->skill->write;
77 if ($action ==
'addcontact' && $permission) {
80 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
83 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
86 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
87 $langs->load(
"errors");
88 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"),
null,
'errors');
93 } elseif ($action ==
'swapstatut' && $permission) {
95 $result = $object->swapContactStatus(
GETPOST(
'ligne',
'int'));
96 } elseif ($action ==
'deletecontact' && $permission) {
98 $result = $object->delete_contact($lineid);
101 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
113 $title = $langs->trans(
'Skill').
" - ".$langs->trans(
'ContactsAddresses');
120 $contactstatic =
new Contact($db);
121 $userstatic =
new User($db);
138 $linkback =
'<a href="'.DOL_URL_ROOT.
'/hrm/skill_list.php?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
140 $morehtmlref =
'<div class="refidno">';
178 $morehtmlref .=
'</div>';
180 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
187 $dirtpls = array_merge($conf->modules_parts[
'tpl'], array(
'/core/tpl'));
188 foreach ($dirtpls as $reldir) {
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage Dolibarr users.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
skillPrepareHead($object)
Prepare array of tabs for Skill.