X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fprofile%2Fjobs.inc.php;h=4f0d4288a3790284952bd5591532bc1cf4fcf10a;hb=b715c1e1641250d75c3bf2d3bd951519ad3e1dcd;hp=e7e4321b1facb67d31560ffb5b9aae9ac5cd7e55;hpb=f378b61c734d0875185b85db6f9c8d941607bec5;p=platal.git diff --git a/modules/profile/jobs.inc.php b/modules/profile/jobs.inc.php index e7e4321..4f0d428 100644 --- a/modules/profile/jobs.inc.php +++ b/modules/profile/jobs.inc.php @@ -1,6 +1,6 @@ pub = new ProfilePub(); - $this->mail = new ProfileEmail(); + $this->mail + = $this->mail_new + = new ProfileEmail(); $this->web = new ProfileWeb(); $this->tel = new ProfileTel(); $this->bool = new ProfileBool(); $this->checks = array('web' => array('web'), + 'mail_new' => array('email_new'), 'mail' => array('email'), 'tel' => array('tel', 'fax', 'mobile'), 'pub' => array('pub', 'tel_pub', 'email_pub')); @@ -47,6 +51,12 @@ class ProfileJob extends ProfileGeoloc foreach ($this->checks as $obj=>&$fields) { $chk =& $this->$obj; foreach ($fields as $field) { + if ($field == "email_new") { + if ($job['email'] == "new@new.new") { + $job['email'] = $job[$field]; + } + continue; + } $job[$field] = $chk->value($page, $field, $job[$field], $s); if (!$s) { $success = false; @@ -96,6 +106,10 @@ class ProfileJob extends ProfileGeoloc S::i('uid')); $i = 0; foreach ($value as &$job) { + if ($job['email'] == "new@new.new") { + $job['email'] = $job['email_new']; + } + XDB::execute("INSERT INTO entreprises (uid, entrid, entreprise, secteur, ss_secteur, fonction, poste, adr1, adr2, adr3, postcode, city, cityid, country, region, regiontxt, @@ -130,6 +144,7 @@ class ProfileJobs extends ProfilePage parent::__construct($wiz); $this->settings['cv'] = null; $this->settings['jobs'] = new ProfileJob(); + $this->watched['cv'] = $this->watched['jobs'] = true; } protected function _fetchData() @@ -151,7 +166,7 @@ class ProfileJobs extends ProfilePage e.adr_pub, e.tel_pub, e.email_pub, e.glat AS precise_lat, e.glng AS precise_lon FROM entreprises AS e - INNER JOIN geoloc_pays AS gp ON(gp.a2 = e.country) + LEFT JOIN geoloc_pays AS gp ON(gp.a2 = e.country) WHERE uid = {?} AND entreprise != '' ORDER BY entrid", S::i('uid')); $this->values['jobs'] = array(); @@ -203,6 +218,9 @@ class ProfileJobs extends ProfilePage public function _prepare(PlatalPage &$page, $id) { + require_once "emails.combobox.inc.php"; + fill_email_combobox($page); + $page->assign('secteurs', XDB::iterator("SELECT id, label FROM emploi_secteur")); $page->assign('fonctions', XDB::iterator("SELECT id, fonction_fr, FIND_IN_SET('titre', flags) AS title