30require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/hrm/class/evaluation.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/hrm/lib/hrm_evaluation.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/hrm/class/job.class.php';
39$langs->loadLangs(array(
'hrm',
'companies',
'other',
'mails'));
44$lineid =
GETPOST(
'lineid',
'int');
45$socid =
GETPOST(
'socid',
'int');
46$action =
GETPOST(
'action',
'aZ09');
51$diroutputmassaction = $conf->hrm->dir_output.
'/temp/massgeneration/'.$user->id;
52$hookmanager->initHooks(array(
'evaluationcontact',
'globalcard'));
54$extrafields->fetch_name_optionals_label($object->table_element);
57include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
60$permission = $user->rights->hrm->evaluation->write;
78if ($action ==
'addcontact' && $permission) {
81 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
84 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
87 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
88 $langs->load(
"errors");
89 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"),
null,
'errors');
94} elseif ($action ==
'swapstatut' && $permission) {
96 $result = $object->swapContactStatus(
GETPOST(
'ligne',
'int'));
97} elseif ($action ==
'deletecontact' && $permission) {
99 $result = $object->delete_contact($lineid);
102 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
114$title = $langs->trans(
'Evaluation').
" - ".$langs->trans(
'ContactsAddresses');
119$form =
new Form($db);
121$contactstatic =
new Contact($db);
122$userstatic =
new User($db);
139 $linkback =
'<a href="'.dol_buildpath(
'/hrm/evaluation_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
141 $morehtmlref =
'<div class="refidno">';
142 $morehtmlref .= $langs->trans(
'Label').
' : '.$object->label;
143 $u_position =
new User(($db));
144 $u_position->fetch($object->fk_user);
145 $morehtmlref .=
'<br>'.$u_position->getNomUrl(1);
147 $job->fetch($object->fk_job);
148 $morehtmlref .=
'<br>'.$langs->trans(
'JobProfile').
' : '.$job->getNomUrl(1);
149 $morehtmlref .=
'</div>';
151 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
158 $dirtpls = array_merge($conf->modules_parts[
'tpl'], array(
'/core/tpl'));
159 foreach ($dirtpls as $reldir) {
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.
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='', $dragdropfile=0)
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
evaluationPrepareHead($object)
Prepare array of tabs for Evaluation.