123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- <?php
- /* Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/public/recruitment/view.php
- * \ingroup recruitment
- * \brief Public file to show on job
- */
- if (!defined('NOLOGIN')) {
- define("NOLOGIN", 1); // This means this output page does not require to be logged.
- }
- if (!defined('NOCSRFCHECK')) {
- define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
- }
- if (!defined('NOIPCHECK')) {
- define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
- }
- if (!defined('NOBROWSERNOTIF')) {
- define('NOBROWSERNOTIF', '1');
- }
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/recruitment/class/recruitmentjobposition.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/security.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
- // Load translation files required by the page
- $langs->loadLangs(array("companies", "other", "recruitment"));
- // Get parameters
- $action = GETPOST('action', 'aZ09');
- $cancel = GETPOST('cancel', 'alpha');
- $email = GETPOST('email', 'alpha');
- $backtopage = '';
- $ref = GETPOST('ref', 'alpha');
- if (GETPOST('btn_view')) {
- unset($_SESSION['email_customer']);
- }
- if (isset($_SESSION['email_customer'])) {
- $email = $_SESSION['email_customer'];
- }
- $object = new RecruitmentJobPosition($db);
- if (!$action) {
- if (!$ref) {
- print $langs->trans('ErrorBadParameters')." - ref missing";
- exit;
- } else {
- $object->fetch('', $ref);
- }
- }
- // Define $urlwithroot
- //$urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root));
- //$urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
- $urlwithroot = DOL_MAIN_URL_ROOT; // This is to use same domain name than current. For Paypal payment, we can use internal URL like localhost.
- // Security check
- if (empty($conf->recruitment->enabled)) {
- httponly_accessforbidden('Module Recruitment not enabled');
- }
- /*
- * Actions
- */
- if ($cancel) {
- if (!empty($backtopage)) {
- header("Location: ".$backtopage);
- exit;
- }
- $action = 'view';
- }
- if ($action == "view" || $action == "presend" || $action == "close" || $action == "confirm_public_close" || $action == "add_message") {
- $error = 0;
- $display_ticket = false;
- if (!strlen($ref)) {
- $error++;
- array_push($object->errors, $langs->trans("ErrorFieldRequired", $langs->transnoentities("Ref")));
- $action = '';
- }
- if (!strlen($email)) {
- $error++;
- array_push($object->errors, $langs->trans("ErrorFieldRequired", $langs->transnoentities("Email")));
- $action = '';
- } else {
- if (!isValidEmail($email)) {
- $error++;
- array_push($object->errors, $langs->trans("ErrorEmailInvalid"));
- $action = '';
- }
- }
- if (!$error) {
- $ret = $object->fetch('', $ref);
- }
- /*
- if (!$error && $action == "add_message" && $display_ticket && GETPOSTISSET('btn_add_message'))
- {
- // TODO Add message...
- $ret = $object->newMessage($user, $action, 0, 1);
- if (!$error)
- {
- $action = 'view';
- }
- }
- */
- if ($error || $errors) {
- setEventMessages($object->error, $object->errors, 'errors');
- if ($action == "add_message") {
- $action = 'presend';
- } else {
- $action = '';
- }
- }
- }
- //var_dump($action);
- //$object->doActions($action);
- // Actions to send emails (for ticket, we need to manage the addfile and removefile only)
- $triggersendname = 'CANDIDATURE_SENTBYMAIL';
- $paramname = 'id';
- $autocopy = 'MAIN_MAIL_AUTOCOPY_CANDIDATURE_TO'; // used to know the automatic BCC to add
- $trackid = 'recruitmentcandidature'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
- /*
- * View
- */
- $head = '';
- if (!empty($conf->global->MAIN_RECRUITMENT_CSS_URL)) {
- $head = '<link rel="stylesheet" type="text/css" href="'.$conf->global->MAIN_RECRUITMENT_CSS_URL.'?lang='.$langs->defaultlang.'">'."\n";
- }
- $conf->dol_hide_topmenu = 1;
- $conf->dol_hide_leftmenu = 1;
- if (!$conf->global->RECRUITMENT_ENABLE_PUBLIC_INTERFACE) {
- $langs->load("errors");
- print '<div class="error">'.$langs->trans('ErrorPublicInterfaceNotEnabled').'</div>';
- $db->close();
- exit();
- }
- $arrayofjs = array();
- $arrayofcss = array();
- $replacemainarea = (empty($conf->dol_hide_leftmenu) ? '<div>' : '').'<div>';
- llxHeader($head, $langs->trans("PositionToBeFilled"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea, 1, 1);
- print '<span id="dolpaymentspan"></span>'."\n";
- print '<div class="center">'."\n";
- print '<form id="dolpaymentform" class="center" name="paymentform" action="'.$_SERVER["PHP_SELF"].'" method="POST">'."\n";
- print '<input type="hidden" name="token" value="'.newToken().'">'."\n";
- print '<input type="hidden" name="action" value="dosign">'."\n";
- print '<input type="hidden" name="tag" value="'.GETPOST("tag", 'alpha').'">'."\n";
- print '<input type="hidden" name="suffix" value="'.GETPOST("suffix", 'alpha').'">'."\n";
- print '<input type="hidden" name="securekey" value="'.$SECUREKEY.'">'."\n";
- print '<input type="hidden" name="entity" value="'.$entity.'" />';
- print "\n";
- print '<!-- Form to view job -->'."\n";
- // Show logo (search order: logo defined by ONLINE_SIGN_LOGO_suffix, then ONLINE_SIGN_LOGO_, then small company logo, large company logo, theme logo, common logo)
- // Define logo and logosmall
- $logosmall = $mysoc->logo_small;
- $logo = $mysoc->logo;
- $paramlogo = 'ONLINE_RECRUITMENT_LOGO_'.$suffix;
- if (!empty($conf->global->$paramlogo)) {
- $logosmall = $conf->global->$paramlogo;
- } elseif (!empty($conf->global->ONLINE_RECRUITMENT_LOGO)) {
- $logosmall = $conf->global->ONLINE_RECRUITMENT_LOGO_;
- }
- //print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\n";
- // Define urllogo
- $urllogo = '';
- $urllogofull = '';
- if (!empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) {
- $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall);
- $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall);
- } elseif (!empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) {
- $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo);
- $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo);
- }
- // Output html code for logo
- if ($urllogo) {
- print '<div class="backgreypublicpayment">';
- print '<div class="logopublicpayment">';
- if (!empty($mysoc->url)) {
- print '<a href="'.$mysoc->url.'" target="_blank" rel="noopener">';
- }
- print '<img id="dolpaymentlogo" src="'.$urllogo.'">';
- if (!empty($mysoc->url)) {
- print '</a>';
- }
- print '</div>';
- if (empty($conf->global->MAIN_HIDE_POWERED_BY)) {
- 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>';
- }
- print '</div>';
- }
- if (!empty($conf->global->RECRUITMENT_IMAGE_PUBLIC_INTERFACE)) {
- print '<div class="backimagepublicrecruitment">';
- print '<img id="idPROJECT_IMAGE_PUBLIC_SUGGEST_BOOTH" src="'.$conf->global->RECRUITMENT_IMAGE_PUBLIC_INTERFACE.'">';
- print '</div>';
- }
- print '<table id="dolpaymenttable" summary="Job position offer" class="center">'."\n";
- // Output introduction text
- $text = '';
- if (!empty($conf->global->RECRUITMENT_NEWFORM_TEXT)) {
- $reg = array();
- if (preg_match('/^\((.*)\)$/', $conf->global->RECRUITMENT_NEWFORM_TEXT, $reg)) {
- $text .= $langs->trans($reg[1])."<br>\n";
- } else {
- $text .= $conf->global->RECRUITMENT_NEWFORM_TEXT."<br>\n";
- }
- $text = '<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
- }
- if (empty($text)) {
- $text .= '<tr><td class="textpublicpayment"><br>'.$langs->trans("JobOfferToBeFilled", $mysoc->name);
- $text .= ' - <strong>'.$mysoc->name.'</strong>';
- $text .= ' - <span class="nowraponall"><span class="fa fa-calendar secondary"></span> '.dol_print_date($object->date_creation).'</span>';
- $text .= '</td></tr>'."\n";
- $text .= '<tr><td class="textpublicpayment"><h1 class="paddingleft paddingright">'.$object->label.'</h1><br></td></tr>'."\n";
- }
- print $text;
- // Output payment summary form
- print '<tr><td class="left">';
- print '<div with="100%" id="tablepublicpayment">';
- print '<div class="opacitymedium">'.$langs->trans("ThisIsInformationOnJobPosition").' :</div>'."\n";
- $error = 0;
- $found = true;
- print '<br>';
- // Label
- print $langs->trans("Label").' : ';
- print '<b>'.dol_escape_htmltag($object->label).'</b><br>';
- // Date
- print $langs->trans("DateExpected").' : ';
- print '<b>';
- if ($object->date_planned > $now) {
- print dol_print_date($object->date_planned, 'day');
- } else {
- print $langs->trans("ASAP");
- }
- print '</b><br>';
- // Remuneration
- print $langs->trans("Remuneration").' : ';
- print '<b>';
- print dol_escape_htmltag($object->remuneration_suggested);
- print '</b><br>';
- // Contact
- $tmpuser = new User($db);
- $tmpuser->fetch($object->fk_user_recruiter);
- print $langs->trans("ContactForRecruitment").' : ';
- $emailforcontact = $object->email_recruiter;
- if (empty($emailforcontact)) {
- $emailforcontact = $tmpuser->email;
- if (empty($emailforcontact)) {
- $emailforcontact = $mysoc->email;
- }
- }
- print '<b class="wordbreak">';
- print $tmpuser->getFullName(-1);
- print ' '.dol_print_email($emailforcontact, 0, 0, 1, 0, 0, 'envelope');
- print '</b>';
- print '</b><br>';
- if ($object->status == RecruitmentJobPosition::STATUS_RECRUITED) {
- print info_admin($langs->trans("JobClosedTextCandidateFound"), 0, 0, 0, 'warning');
- }
- if ($object->status == RecruitmentJobPosition::STATUS_CANCELED) {
- print info_admin($langs->trans("JobClosedTextCanceled"), 0, 0, 0, 'warning');
- }
- print '<br>';
- // Description
- $text = $object->description;
- print $text;
- print '<input type="hidden" name="ref" value="'.$object->ref.'">';
- print '</div>'."\n";
- print "\n";
- if ($action != 'dosubmit') {
- if ($found && !$error) {
- // We are in a management option and no error
- } else {
- dol_print_error_email('ERRORSUBMITAPPLICATION');
- }
- } else {
- // Print
- }
- print '</td></tr>'."\n";
- print '</table>'."\n";
- print '</form>'."\n";
- print '</div>'."\n";
- print '<br>';
- htmlPrintOnlinePaymentFooter($mysoc, $langs);
- llxFooter('', 'public');
- $db->close();
|