26if (!defined(
'NOLOGIN')) {
29if (!defined(
'NOCSRFCHECK')) {
30 define(
"NOCSRFCHECK", 1);
32if (!defined(
'NOIPCHECK')) {
33 define(
'NOIPCHECK',
'1');
35if (!defined(
'NOBROWSERNOTIF')) {
36 define(
'NOBROWSERNOTIF',
'1');
40require
'../../main.inc.php';
41require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentjobposition.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentcandidature.class.php';
43require_once DOL_DOCUMENT_ROOT.
'/core/class/CMailFile.class.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/security.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/lib/payments.lib.php';
47require_once DOL_DOCUMENT_ROOT .
'/core/lib/public.lib.php';
58$langs->loadLangs(array(
"companies",
"other",
"recruitment"));
61$action =
GETPOST(
'action',
'aZ09');
62$cancel =
GETPOST(
'cancel',
'alpha');
63$email =
GETPOST(
'email',
'alpha');
64$firstname =
GETPOST(
'firstname',
'alpha');
65$lastname =
GETPOST(
'lastname',
'alpha');
66$birthday =
GETPOST(
'birthday',
'alpha');
67$phone =
GETPOST(
'phone',
'alpha');
68$message =
GETPOST(
'message',
'alpha');
69$requestedremuneration =
GETPOST(
'requestedremuneration',
'alpha');
74 unset($_SESSION[
'email_customer']);
76if (isset($_SESSION[
'email_customer'])) {
77 $email = $_SESSION[
'email_customer'];
83 print $langs->trans(
'ErrorBadParameters').
" - ref missing";
91$urlwithroot = DOL_MAIN_URL_ROOT;
92$backtopage = $urlwithroot.
'/public/recruitment/index.php';
95if (!isModEnabled(
"recruitment")) {
100$user->loadDefaultValues();
108 if (!empty($backtopage)) {
109 header(
"Location: ".$backtopage);
114if ($action ==
"dosubmit") {
119 array_push(
$object->errors, $langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")));
122 if (!strlen($email)) {
124 array_push(
$object->errors, $langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Email")));
129 array_push(
$object->errors, $langs->trans(
"ErrorEmailInvalid"));
133 if (!strlen($lastname)) {
135 array_push(
$object->errors, $langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Lastname")));
140 $sql =
"SELECT rrc.rowid FROM ".MAIN_DB_PREFIX.
"recruitment_recruitmentcandidature as rrc";
141 $sql .=
" WHERE rrc.email = '". $db->escape($email).
"'";
143 $resql = $db->query($sql);
145 $num = $db->num_rows($resql);
148 setEventMessages($langs->trans(
"ErrorRecruitmmentCandidatureAlreadyExists", $email),
null,
'errors');
159 $candidature->firstname =
GETPOST(
'firstname',
'alpha');
160 $candidature->lastname =
GETPOST(
'lastname',
'alpha');
161 $candidature->email =
GETPOST(
'email',
'alpha');
162 $candidature->phone =
GETPOST(
'phone',
'alpha');
163 $candidature->date_birth =
GETPOST(
'birthday',
'alpha');
164 $candidature->requestedremuneration =
GETPOST(
'requestedremuneration',
'alpha');
165 $candidature->description =
GETPOST(
'message',
'alpha');
166 $candidature->fk_recruitmentjobposition =
$object->id;
171 $nb_post_max =
getDolGlobalInt(
"MAIN_SECURITY_MAX_POST_ON_PUBLIC_PAGES_BY_IP_ADDRESS", 200);
175 $errmsg .= implode(
'<br>', $candidature->errors);
178 $result = $candidature->create($user);
181 $errmsg .= implode(
'<br>', $candidature->errors);
185 $candidature->validate($user);
188 $errmsg .= implode(
'<br>', $candidature->errors);
196 header(
"Location: " . $backtopage);
205$triggersendname =
'CANDIDATURE_SENTBYMAIL';
207$autocopy =
'MAIN_MAIL_AUTOCOPY_CANDIDATURE_TO';
208$trackid =
'recruitmentcandidature'.$object->id;
209include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
217$form =
new Form($db);
222 $head =
'<link rel="stylesheet" type="text/css" href="' .
getDolGlobalString(
'MAIN_RECRUITMENT_CSS_URL').
'?lang='.$langs->defaultlang.
'">'.
"\n";
225$conf->dol_hide_topmenu = 1;
226$conf->dol_hide_leftmenu = 1;
228if (!
$conf->global->RECRUITMENT_ENABLE_PUBLIC_INTERFACE) {
229 $langs->load(
"errors");
230 print
'<div class="error">'.$langs->trans(
'ErrorPublicInterfaceNotEnabled').
'</div>';
236$arrayofcss = array();
238$replacemainarea = (empty(
$conf->dol_hide_leftmenu) ?
'<div>' :
'').
'<div>';
239llxHeader($head, $langs->trans(
"PositionToBeFilled"),
'',
'', 0, 0,
'',
'',
'',
'onlinepaymentbody', $replacemainarea, 1, 1);
242print
'<span id="dolpaymentspan"></span>'.
"\n";
243print
'<div class="center">'.
"\n";
244print
'<form id="dolpaymentform" class="center" name="paymentform" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">'.
"\n";
245print
'<input type="hidden" name="token" value="'.newToken().
'">'.
"\n";
246print
'<input type="hidden" name="action" value="dosubmit">'.
"\n";
247print
'<input type="hidden" name="tag" value="'.GETPOST(
"tag",
'alpha').
'">'.
"\n";
248print
'<input type="hidden" name="suffix" value="'.GETPOST(
"suffix",
'alpha').
'">'.
"\n";
249print
'<input type="hidden" name="securekey" value="'.$SECUREKEY.
'">'.
"\n";
250print
'<input type="hidden" name="entity" value="'.$entity.
'" />';
252print
'<!-- Form to view job -->'.
"\n";
256$logosmall = $mysoc->logo_small;
258$paramlogo =
'ONLINE_RECRUITMENT_LOGO_'.$suffix;
268if (!empty($logosmall) && is_readable(
$conf->mycompany->dir_output.
'/logos/thumbs/'.$logosmall)) {
269 $urllogo = DOL_URL_ROOT.
'/viewimage.php?modulepart=mycompany&entity='.
$conf->entity.
'&file='.urlencode(
'logos/thumbs/'.$logosmall);
270 $urllogofull = $dolibarr_main_url_root.
'/viewimage.php?modulepart=mycompany&entity='.
$conf->entity.
'&file='.urlencode(
'logos/thumbs/'.$logosmall);
271} elseif (!empty($logo) && is_readable(
$conf->mycompany->dir_output.
'/logos/'.$logo)) {
272 $urllogo = DOL_URL_ROOT.
'/viewimage.php?modulepart=mycompany&entity='.
$conf->entity.
'&file='.urlencode(
'logos/'.$logo);
273 $urllogofull = $dolibarr_main_url_root.
'/viewimage.php?modulepart=mycompany&entity='.
$conf->entity.
'&file='.urlencode(
'logos/'.$logo);
277 print
'<div class="backgreypublicpayment">';
278 print
'<div class="logopublicpayment">';
279 if (!empty($mysoc->url)) {
280 print
'<a href="'.$mysoc->url.
'" target="_blank" rel="noopener">';
282 print
'<img id="dolpaymentlogo" src="'.$urllogofull.
'">';
283 if (!empty($mysoc->url)) {
288 print
'<div class="poweredbypublicpayment opacitymedium right"><a class="poweredbyhref" href="https://www.dolibarr.org?utm_medium=website&utm_source=poweredby" target="dolibarr" rel="noopener">'.$langs->trans(
"PoweredBy").
'<br><img class="poweredbyimg" src="'.DOL_URL_ROOT.
'/theme/dolibarr_logo.svg" width="80px"></a></div>';
294 print
'<div class="backimagepublicrecruitment">';
295 print
'<img id="idRECRUITMENT_IMAGE_PUBLIC_INTERFACE" src="' .
getDolGlobalString(
'RECRUITMENT_IMAGE_PUBLIC_INTERFACE').
'">';
300print
'<table id="dolpaymenttable" summary="Job position offer" class="center">'.
"\n";
306 if (preg_match(
'/^\((.*)\)$/',
$conf->global->RECRUITMENT_NEWFORM_TEXT, $reg)) {
307 $text .= $langs->trans($reg[1]).
"<br>\n";
311 $text =
'<tr><td align="center"><br>'.$text.
'<br></td></tr>'.
"\n";
314 $text .=
'<tr><td class="textpublicpayment" colspan=2><br>'.$langs->trans(
"JobOfferToBeFilled", $mysoc->name);
315 $text .=
' - <strong>'.$mysoc->name.
'</strong>';
316 $text .=
' - <span class="nowraponall"><span class="fa fa-calendar secondary"></span> '.dol_print_date(
$object->date_creation).
'</span>';
317 $text .=
'</td></tr>'.
"\n";
318 $text .=
'<tr><td class="textpublicpayment" colspan=2><h1 class="paddingleft paddingright">'.$object->label.
'</h1><br></td></tr>'.
"\n";
323print
'<tr><td class="left" colspan=2>';
325print
'<div with="100%" id="tablepublicpayment">';
326print
'<div class="opacitymedium">'.$langs->trans(
"ThisIsInformationOnJobPosition").
' :</div>'.
"\n";
334print $langs->trans(
"Label").
' : ';
335print
'<b>'.dol_escape_htmltag(
$object->label).
'</b><br>';
338print $langs->trans(
"DateExpected").
' : ';
340if (
$object->date_planned > $now) {
343 print $langs->trans(
"ASAP");
348print $langs->trans(
"Remuneration").
' : ';
354$tmpuser =
new User($db);
355$tmpuser->fetch(
$object->fk_user_recruiter);
357print $langs->trans(
"ContactForRecruitment").
' : ';
358$emailforcontact =
$object->email_recruiter;
359if (empty($emailforcontact)) {
360 $emailforcontact = $tmpuser->email;
361 if (empty($emailforcontact)) {
362 $emailforcontact = $mysoc->email;
365print
'<b class="wordbreak">';
366print $tmpuser->getFullName(-1);
367print
' '.dol_print_email($emailforcontact, 0, 0, 1, 0, 0,
'envelope');
372 print
info_admin($langs->trans(
"JobClosedTextCandidateFound"), 0, 0,
'0',
'warning');
375 print
info_admin($langs->trans(
"JobClosedTextCanceled"), 0, 0,
'0',
'warning');
384print
'<input type="hidden" name="ref" value="'.$object->ref.
'">';
390if ($action !=
'dosubmit') {
391 if ($found && !$error) {
393 print
'</td></tr>'.
"\n";
394 print
'<tr><td class="titlefieldcreate fieldrequired left">'.$langs->trans(
"Lastname").
'</td><td class="left">';
395 print
'<input type="text" class="flat minwidth400 --success" name="lastname" maxlength="128" value="'.$lastname.
'">';
396 print
'</td></tr>'.
"\n";
398 print
'<tr><td class="titlefieldcreate left">'.$langs->trans(
"Firstname").
'</td><td class="left">';
399 print
'<input type="text" class="flat minwidth400 --success" name="firstname" maxlength="128" value="'.$firstname.
'">';
400 print
'</td></tr>'.
"\n";
402 print
'<tr><td class="titlefieldcreate fieldrequired left">'.$langs->trans(
"Email").
'</td><td class="left">';
403 print
img_picto(
"",
"email").
'<input type="text" class="flat minwidth100 --success" name="email" value="'.$email.
'">';
404 print
'</td></tr>'.
"\n";
406 print
'<tr><td class="titlefieldcreate left">'.$langs->trans(
"Phone").
'</td><td class="left">';
407 print
img_picto(
"",
"phone").
'<input type="text" class="flat minwidth100 --success" name="phone" value="'.$phone.
'">';
408 print
'</td></tr>'.
"\n";
410 print
'<tr><td class="titlefieldcreate left minwidth300">'.$langs->trans(
"DateOfBirth").
'</td><td class="left">';
411 print $form->selectDate($birthday,
'birthday', 0, 0, 1,
"", 1, 0);
412 print
'</td></tr>'.
"\n";
414 print
'<tr><td class="titlefieldcreate left">'.$langs->trans(
"RequestedRemuneration").
'</td><td class="left">';
415 print
'<input type="text" class="flat minwidth100 --success" name="requestedremuneration" value="'.$requestedremuneration.
'">';
416 print
'</td></tr>'.
"\n";
418 print
'<tr><td class="titlefieldcreate left">'.$langs->trans(
"Message").
'</td><td class="left">';
419 print
'<textarea class="flat quatrevingtpercent" rows="'.ROWS_5.
'" name="message">'.$message.
'</textarea>';
420 print
'</td></tr>'.
"\n";
422 print
'<tr><td colspan=2>';
423 print $form->buttonsSaveCancel(
'Submit',
'Cancel');
424 print
'</td></tr>'.
"\n";
432print
'</td></tr>'.
"\n";
434print
'</table>'.
"\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class for RecruitmentCandidature.
Class for RecruitmentJobPosition.
const STATUS_RECRUITED
Recruited.
const STATUS_CANCELED
Canceled.
Class to manage Dolibarr users.
htmlPrintOnlineFooter($fromcompany, $langs, $addformmessage=0, $suffix='', $object=null)
Show footer of company in HTML pages.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error_email($prefixcode, $errormessage='', $errormessages=array(), $morecss='error', $email='')
Show a public email and error code to contact if technical error.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
getUserRemoteIP()
Return the IP of remote user.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
dol_htmloutput_errors($mesgstring='', $mesgarray=array(), $keepembedded=0)
Print formatted error messages to output (Used to show messages on html output).
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
checkNbPostsForASpeceificIp($object, $nb_post_max)
Check if the object exceeded the number of posts for a specific ip in the same week.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.