X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=inline;f=modules%2Fprofile%2Fgeneral.inc.php;h=85c3dd5220a104b8b4cbfbac95bdf5adfb450d0f;hb=7733ade133a641259bd5b1256e0d86af3aae97f5;hp=ac797c683c8c4a5211ea2982bcadedf3be337287;hpb=3ec8ae8ea229f68d2ec8ba9f3ada0a1e05d17f1a;p=platal.git diff --git a/modules/profile/general.inc.php b/modules/profile/general.inc.php index ac797c6..85c3dd5 100644 --- a/modules/profile/general.inc.php +++ b/modules/profile/general.inc.php @@ -1,6 +1,6 @@ prepareField($init); @@ -78,7 +78,7 @@ class ProfileSettingSearchNames implements ProfileSetting return $value; } - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { $success = true; $success_tmp = true; @@ -149,7 +149,7 @@ class ProfileSettingSearchNames implements ProfileSetting $this->search_names = array(); foreach ($value as &$sn) { $sn['name'] = trim($sn['name']); - if (S::user()->isMe($this->owner) && ($sn['type'] == 'firstname' || $sn['type'] == 'lastname')) { + if (S::user()->isMe($page->owner) && ($sn['type'] == 'firstname' || $sn['type'] == 'lastname')) { $sn['name'] = $this->prepare($page, $sn['type'], $sn['name'], $initial[$sn['type']], $success_tmp); $success = $success && $success_tmp; @@ -207,7 +207,7 @@ class ProfileSettingSearchNames implements ProfileSetting return $value; } - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { require_once 'name.func.inc.php'; @@ -217,7 +217,7 @@ class ProfileSettingSearchNames implements ProfileSetting INNER JOIN profile_name_enum AS e ON (s.typeid = e.id) WHERE s.pid = {?} AND NOT FIND_IN_SET('not_displayed', e.flags)", $page->pid()); - $has_new = set_alias_names($this->search_names, $sn_old, $page->pid(), $page->owner->id()); + $has_new = set_alias_names($this->search_names, $sn_old, $page->pid(), $page->owner); // Only requires validation if modification in public names if ($has_new) { @@ -258,7 +258,7 @@ class ProfileSettingEdu implements ProfileSetting return ($a < $b) ? -1 : 1; } - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { $success = true; if (is_null($value)) { @@ -293,7 +293,7 @@ class ProfileSettingEdu implements ProfileSetting return $value; } - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { XDB::execute("DELETE FROM profile_education WHERE pid = {?} AND !FIND_IN_SET('primary', flags)", @@ -349,9 +349,9 @@ class ProfileSettingEdu implements ProfileSetting class ProfileSettingEmailDirectory implements ProfileSetting { public function __construct(){} - public function save(ProfilePage &$page, $field, $value){} + public function save(ProfilePage $page, $field, $value){} - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { $p = Platal::page(); @@ -390,7 +390,7 @@ class ProfileSettingNetworking implements ProfileSetting $this->number = new ProfileSettingNumber(); } - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { if (is_null($value)) { $value = XDB::fetchAllAssoc("SELECT n.address, n.pub, n.nwid AS type @@ -431,7 +431,7 @@ class ProfileSettingNetworking implements ProfileSetting return $value; } - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { XDB::execute("DELETE FROM profile_networking WHERE pid = {?}", @@ -461,7 +461,7 @@ class ProfileSettingPromo implements ProfileSetting { public function __construct(){} - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { $gradYearNew = $value; if ($page->profile->mainEducation() == 'X') { @@ -486,14 +486,11 @@ class ProfileSettingPromo implements ProfileSetting } } - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { $entryYear = $page->profile->entry_year; $gradYear = $page->profile->grad_year; - $yearpromo = $page->profile->grad_year; - if ($page->profile->mainEducation() == 'X') { - $yearpromo -= $page->profile->mainEducationDuration(); - } + $yearpromo = $page->profile->yearpromo(); $success = true; if (is_null($value) || $value == $yearpromo) { if ($gradYear != $entryYear + $page->profile->mainEducationDuration()) { @@ -537,7 +534,7 @@ class ProfilePageGeneral extends ProfilePage { protected $pg_template = 'profile/general.tpl'; - public function __construct(PlWizard &$wiz) + public function __construct(PlWizard $wiz) { parent::__construct($wiz); $this->settings['search_names'] @@ -675,14 +672,18 @@ class ProfilePageGeneral extends ProfilePage } if ($this->changed['promo_display']) { if ($this->values['promo_display']{0} == $this->profile->mainEducation()) { - if (($this->profile->mainEducation() == 'X' - && intval(substr($this->values['promo_display'], 1, 4)) >= $this->profile->entry_year) + $yearpromo = intval(substr($this->values['promo_display'], 1, 4)); + if (($this->profile->mainEducation() == 'X' && $yearpromo >= $this->profile->entry_year) || ($this->profile->mainEducation() != 'X' - && intval(substr($this->values['promo_display'], 1, 4)) >= $this->profile->entry_year + $this->profile->mainEducationDuration())) { + && $yearpromo >= $this->profile->entry_year + $this->profile->mainEducationDuration())) { XDB::execute('UPDATE profile_display SET promo = {?} WHERE pid = {?}', $this->values['promo_display'], $this->pid()); + XDB::execute('UPDATE profile_education + SET promo_year = {?} + WHERE pid = {?} AND FIND_IN_SET(\'primary\', flags)', + $yearpromo, $this->pid()); } } } @@ -707,7 +708,7 @@ class ProfilePageGeneral extends ProfilePage } } - public function _prepare(PlPage &$page, $id) + public function _prepare(PlPage $page, $id) { require_once "education.func.inc.php"; @@ -717,7 +718,7 @@ class ProfilePageGeneral extends ProfilePage $page->assign('edu_fields', $res->fetchAllAssoc()); require_once "emails.combobox.inc.php"; - fill_email_combobox($page, $this->owner); + fill_email_combobox($page, array('source', 'redirect', 'job', 'directory'), $this->owner); $res = XDB::query("SELECT nw.nwid AS type, nw.name FROM profile_networking_enum AS nw