25 require_once
'../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
27 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
29 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
30 require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentjobposition.class.php';
31 require_once DOL_DOCUMENT_ROOT.
'/recruitment/lib/recruitment_recruitmentjobposition.lib.php';
34 $langs->loadLangs(array(
"recruitment",
"other"));
39 $action =
GETPOST(
'action',
'aZ09');
40 $confirm =
GETPOST(
'confirm',
'alpha');
41 $cancel =
GETPOST(
'cancel',
'aZ09');
42 $contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'recruitmentjobpositioncard';
43 $backtopage =
GETPOST(
'backtopage',
'alpha');
44 $backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
45 $lineid =
GETPOST(
'lineid',
'int');
50 $diroutputmassaction = $conf->recruitment->dir_output.
'/temp/massgeneration/'.$user->id;
51 $hookmanager->initHooks(array(
'recruitmentjobpositioncard',
'globalcard'));
54 $extrafields->fetch_name_optionals_label($object->table_element);
56 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
59 $search_all =
GETPOST(
"search_all",
'alpha');
61 foreach ($object->fields as $key => $val) {
62 if (
GETPOST(
'search_'.$key,
'alpha')) {
63 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
67 if (empty($action) && empty($id) && empty($ref)) {
72 include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
75 $permissiontoread = $user->rights->recruitment->recruitmentjobposition->read;
76 $permissiontoadd = $user->rights->recruitment->recruitmentjobposition->write;
77 $permissiontodelete = $user->rights->recruitment->recruitmentjobposition->delete || ($permissiontoadd && isset($object->status) && $object->status == $object::STATUS_DRAFT);
78 $permissionnote = $user->rights->recruitment->recruitmentjobposition->write;
79 $permissiondellink = $user->rights->recruitment->recruitmentjobposition->write;
80 $upload_dir = $conf->recruitment->multidir_output[isset($object->entity) ? $object->entity : 1];
82 $usercanclose = $permissiontoadd;
87 $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
88 $result =
restrictedArea($user,
'recruitment', $object->id,
'recruitment_recruitmentjobposition',
'recruitmentjobposition',
'',
'rowid', $isdraft);
95 $parameters = array();
96 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
101 if (empty($reshook)) {
104 $backurlforlist =
dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1);
106 if (empty($backtopage) || ($cancel && empty($id))) {
107 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
108 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
109 $backtopage = $backurlforlist;
111 $backtopage =
dol_buildpath(
'/recruitment/recruitmentjobposition_card.php', 1).
'?id='.($id > 0 ? $id :
'__ID__');
115 $triggermodname =
'RECRUITMENT_RECRUITMENTJOBPOSITION_MODIFY';
118 include DOL_DOCUMENT_ROOT.
'/core/actions_addupdatedelete.inc.php';
121 include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
124 include DOL_DOCUMENT_ROOT.
'/core/actions_printing.inc.php';
130 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
132 if ($action ==
'set_thirdparty' && $permissiontoadd) {
133 $object->setValueFrom(
'fk_soc',
GETPOST(
'fk_soc',
'int'),
'',
'',
'date',
'', $user,
'RECRUITMENTJOBPOSITION_MODIFY');
135 if ($action ==
'classin' && $permissiontoadd) {
136 $object->setProject(
GETPOST(
'projectid',
'int'));
138 if ($action ==
'confirm_closeas' && $usercanclose && !
GETPOST(
'cancel',
'alpha')) {
139 if (!(
GETPOST(
'status',
'int') > 0)) {
140 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"CloseAs")),
null,
'errors');
144 if ($object->status == $object::STATUS_VALIDATED) {
147 $result = $object->cloture($user,
GETPOST(
'status',
'int'),
GETPOST(
'note_private',
'restricthtml'));
163 $triggersendname =
'RECRUITMENTJOBPOSITION_SENTBYMAIL';
164 $autocopy =
'MAIN_MAIL_AUTOCOPY_RECRUITMENTJOBPOSITION_TO';
165 $trackid =
'recruitmentjobposition'.$object->id;
166 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
180 $title = $object->ref.
" - ".$langs->trans(
'Card');
185 if ($action ==
'create') {
186 print
load_fiche_titre($langs->trans(
"NewPositionToBeFilled"),
'',
'object_'.$object->picto);
188 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
189 print
'<input type="hidden" name="token" value="'.newToken().
'">';
190 print
'<input type="hidden" name="action" value="add">';
192 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
194 if ($backtopageforcancel) {
195 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
200 $_POST[
'fk_user_recruiter'] = $user->id;
205 print
'<table class="border centpercent tableforfieldcreate">'.
"\n";
208 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_add.tpl.php';
211 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_add.tpl.php';
213 print
'</table>'.
"\n";
217 print
$form->buttonsSaveCancel(
"Create");
225 if (($id || $ref) && $action ==
'edit') {
226 print
load_fiche_titre($langs->trans(
"PositionToBeFilled"),
'',
'object_'.$object->picto);
228 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
229 print
'<input type="hidden" name="token" value="'.newToken().
'">';
230 print
'<input type="hidden" name="action" value="update">';
231 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
233 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
235 if ($backtopageforcancel) {
236 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
241 print
'<table class="border centpercent tableforfieldedit">'.
"\n";
244 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_edit.tpl.php';
247 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_edit.tpl.php';
253 print
$form->buttonsSaveCancel();
259 if ($object->id > 0 && (empty($action) || ($action !=
'edit' && $action !=
'create'))) {
260 $res = $object->fetch_optionals();
263 print
dol_get_fiche_head($head,
'card', $langs->trans(
"RecruitmentJobPosition"), -1, $object->picto);
268 if ($action ==
'delete') {
269 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'DeleteRecruitmentJobPosition'), $langs->trans(
'ConfirmDeleteObject'),
'confirm_delete',
'', 0, 1);
272 if ($action ==
'deleteline') {
273 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&lineid='.$lineid, $langs->trans(
'DeleteLine'), $langs->trans(
'ConfirmDeleteLine'),
'confirm_deleteline',
'', 0, 1);
276 if ($action ==
'clone') {
278 $formquestion = array();
279 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneAsk', $object->ref),
'confirm_clone', $formquestion,
'yes', 1);
281 if ($action ==
'closeas') {
284 $formquestion = array(
285 array(
'type' =>
'select',
'name' =>
'status',
'label' =>
'<span class="fieldrequired">'.$langs->trans(
"CloseAs").
'</span>',
'values' => array(3=>$object->LibStatut($object::STATUS_RECRUITED), 9=>$object->LibStatut($object::STATUS_CANCELED))),
286 array(
'type' =>
'text',
'name' =>
'note_private',
'label' => $langs->trans(
"Note"),
'value' =>
'')
298 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'Close'), $text,
'confirm_closeas', $formquestion,
'', 1, 250);
302 $parameters = array(
'formConfirm' =>
$formconfirm,
'lineid' => $lineid);
303 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters, $object, $action);
304 if (empty($reshook)) {
306 } elseif ($reshook > 0) {
316 $linkback =
'<a href="'.dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
318 $morehtmlref =
'<div class="refidno">';
327 if (!empty($conf->project->enabled)) {
328 $langs->load(
"projects");
329 $morehtmlref .= $langs->trans(
'Project').
' ';
330 if ($permissiontoadd) {
331 if ($action !=
'classify') {
332 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a>';
334 $morehtmlref .=
' : ';
335 if ($action ==
'classify') {
337 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'">';
338 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
339 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
340 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
341 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
342 $morehtmlref .=
'</form>';
344 $morehtmlref .=
$form->form_project($_SERVER[
'PHP_SELF'].
'?id='.$object->id, !empty($object->socid) ? $object->socid : 0, $object->fk_project,
'none', 0, 0, 0, 1);
347 if (!empty($object->fk_project)) {
349 $proj->fetch($object->fk_project);
350 $morehtmlref .=
': '.$proj->getNomUrl();
356 $morehtmlref .=
'</div>';
359 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
362 print
'<div class="fichecenter">';
363 print
'<div class="fichehalfleft">';
364 print
'<div class="underbanner clearboth"></div>';
365 print
'<table class="border centpercent tableforfield">'.
"\n";
368 $keyforbreak =
'description';
369 unset($object->fields[
'fk_project']);
371 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_view.tpl.php';
374 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
380 print
'<div class="clearboth"></div>';
387 if ($action !=
'presend' && $action !=
'editline') {
388 print
'<div class="tabsAction">'.
"\n";
389 $parameters = array();
390 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters, $object, $action);
395 if (empty($reshook)) {
397 if (empty($user->socid)) {
398 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=presend&mode=init#formmailbeforetitle">'.$langs->trans(
'SendMail').
'</a>'.
"\n";
402 if ($object->status == $object::STATUS_VALIDATED) {
403 if ($permissiontoadd) {
404 print
'<a class="butAction" href="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'&action=confirm_setdraft&confirm=yes">'.$langs->trans(
"SetToDraft").
'</a>';
409 if ($permissiontoadd) {
410 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=edit&token='.
newToken().
'">'.$langs->trans(
"Modify").
'</a>'.
"\n";
412 print
'<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans(
"NotEnoughPermissions")).
'">'.$langs->trans(
'Modify').
'</a>'.
"\n";
416 if ($object->status == $object::STATUS_DRAFT) {
417 if ($permissiontoadd) {
418 if (empty($object->table_element_line) || (is_array($object->lines) && count($object->lines) > 0)) {
419 print
'<a class="butAction" href="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'&action=confirm_validate&token='.
newToken().
'&confirm=yes">'.$langs->trans(
"Validate").
'</a>';
421 $langs->load(
"errors");
422 print
'<a class="butActionRefused" href="" title="'.$langs->trans(
"ErrorAddAtLeastOneLineFirst").
'">'.$langs->trans(
"Validate").
'</a>';
428 if ($object->status == $object::STATUS_VALIDATED) {
430 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=closeas&token='.
newToken().(empty($conf->global->MAIN_JUMP_TAG) ?
'' :
'#close').
'"';
431 print
'>'.$langs->trans(
'Close').
'</a>';
433 print
'<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans(
"NotEnoughPermissions")).
'">'.$langs->trans(
'Close').
'</a>';
438 if ($permissiontoadd) {
439 print
dolGetButtonAction($langs->trans(
"ToClone"),
'',
'default', $_SERVER[
'PHP_SELF'].
'?id='.$object->id.(!empty($object->socid) ?
'&socid='.$object->socid :
"").
'&action=clone&object=recruitmentjobposition',
'clone', $permissiontoadd);
450 if ($permissiontoadd) {
451 if ($object->status == $object::STATUS_CANCELED) {
452 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=confirm_reopen&confirm=yes">'.$langs->trans(
"Re-Open").
'</a>'.
"\n";
457 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.
newToken(),
'delete', $permissiontodelete);
464 if (
GETPOST(
'modelselected')) {
468 if ($action !=
'presend') {
469 print
'<div class="fichecenter"><div class="fichehalfleft">';
470 print
'<a name="builddoc"></a>';
472 $includedocgeneration = 1;
475 if ($includedocgeneration) {
477 $relativepath = $objref.
'/'.$objref.
'.pdf';
478 $filedir = $conf->recruitment->dir_output.
'/'.$object->element.
'/'.$objref;
479 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".$object->id;
480 $genallowed = $user->rights->recruitment->recruitmentjobposition->read;
481 $delallowed = $user->rights->recruitment->recruitmentjobposition->write;
482 print $formfile->showdocuments(
'recruitment:RecruitmentJobPosition', $object->element.
'/'.$objref, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0,
'',
'',
'', $langs->defaultlang);
486 $linktoelem =
$form->showLinkToObjectBlock($object,
null, array(
'recruitmentjobposition'));
487 $somethingshown =
$form->showLinkedObjectBlock($object, $linktoelem);
491 print
'<br><!-- Link to go on public job page -->'.
"\n";
493 $langs->loadLangs(array(
'recruitment'));
495 $out =
img_picto(
'',
'globe').
' <span class="opacitymedium">'.$langs->trans(
"PublicUrl").
'</span><br>';
498 $out .=
'<div class="urllink"><input type="text" id="recruitmentjobpositionurl" class="quatrevingtpercent" value="'.$url.
'">';
499 $out .=
'<a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.
img_picto(
'',
'globe').
'</a></div>';
505 print
'</div><div class="fichehalfright">';
509 $morehtmlcenter =
dolGetButtonTitle($langs->trans(
'SeeAll'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/recruitment/recruitmentjobposition_agenda.php?id='.$object->id);
512 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
514 $somethingshown =
$formactions->showactions($object, $object->element.
'@recruitment', (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1,
'', $MAXEVENT,
'', $morehtmlcenter);
516 print
'</div></div>';
520 if (
GETPOST(
'modelselected')) {
525 $modelmail =
'recruitmentjobposition';
526 $defaulttopic =
'InformationMessage';
527 $diroutput = $conf->recruitment->dir_output;
528 $trackid =
'recruitmentjobposition'.$object->id;
530 include DOL_DOCUMENT_ROOT.
'/core/tpl/card_presend.tpl.php';
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(preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) if(preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) if($action=='set') elseif($action=='specimen') elseif($action=='setmodel') elseif($action=='del') elseif($action=='setdoc') $formactions
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 projects.
Class for RecruitmentJobPosition.
const STATUS_DRAFT
Draft status.
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.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
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.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
$formconfirm
if ($action == 'delbookkeepingyear') {
getPublicJobPositionUrl($mode, $ref='', $localorexternal=0)
Return string with full Url.
recruitmentjobpositionPrepareHead($object)
Prepare array of tabs for RecruitmentJobPosition.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.