From: Stéphane Jacob Date: Mon, 31 Oct 2011 22:27:04 +0000 (+0100) Subject: Fixes AX profile edition for medal pages. X-Git-Tag: xorg/1.1.4~43 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=566967dc73a3e219dbef0afc004291a29f36d8cc;p=platal.git Fixes AX profile edition for medal pages. Signed-off-by: Stéphane Jacob --- diff --git a/modules/profile/decos.inc.php b/modules/profile/decos.inc.php index dcdffe5..1749972 100644 --- a/modules/profile/decos.inc.php +++ b/modules/profile/decos.inc.php @@ -35,7 +35,8 @@ class ProfileSettingDeco implements ProfileSetting public function value(ProfilePage $page, $field, $value, &$success) { $success = true; - if (is_null($value)) { + if (is_null($value) || !S::user()->isMyProfile($profile) && + $page->values['medals_pub'] == 'private' && !S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) { // Fetch already attributed medals $value = XDB::fetchAllAssoc("SELECT m.mid AS id, m.gid AS grade, 1 AS valid, FIND_IN_SET('has_levels', e.flags) AS has_levels, m.level FROM profile_medals AS m @@ -69,6 +70,11 @@ class ProfileSettingDeco implements ProfileSetting $total_original = count($original); $total_value = count($value); + if ($total_original && !S::user()->isMyProfile($profile) && + $page->values['medals_pub'] == 'private' && !S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) { + return; + } + while ($i < $total_original || $j < $total_value) { if (isset($value[$j]) && (!isset($original[$i]) || self::compareMedals($original[$i], $value[$j]))) { $req = new MedalReq(S::user(), $page->profile, $value[$j]['id'], $value[$j]['grade'], $value[$j]['level'], $value[$j]['has_levels']); @@ -111,8 +117,8 @@ class ProfilePageDecos extends ProfilePage public function __construct(PlWizard $wiz) { parent::__construct($wiz); - $this->settings['medals'] = new ProfileSettingDeco(); $this->settings['medals_pub'] = new ProfileSettingPub(); + $this->settings['medals'] = new ProfileSettingDeco(); $this->watched['medals'] = true; } @@ -127,7 +133,7 @@ class ProfilePageDecos extends ProfilePage protected function _saveData() { - if ($this->changed['medals_pub']) { + if ($this->changed['medals_pub'] && (S::user()->isMyProfile($profile) || S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE))) { XDB::execute("UPDATE profiles SET medals_pub = {?} WHERE pid = {?}", diff --git a/templates/profile/deco.tpl b/templates/profile/deco.tpl index 334ca32..2dec241 100644 --- a/templates/profile/deco.tpl +++ b/templates/profile/deco.tpl @@ -20,16 +20,22 @@ {* *} {**************************************************************************} +{if !hasPerm('directory_private') && ($medals_pub eq 'private') && ($medals|@count neq 0)} +{assign var=hidden_medal value=true} +{else} +{assign var=hidden_medal value=false} +{/if} +{if !$hidden_medal} +{/if}
-
- Médailles, Décorations, Prix… + Médailles, Décorations, Prix…{if $hidden_medal} (masqué){/if}
@@ -59,6 +65,7 @@

{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}