X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fprofile%2Fgroups.inc.php;h=0f27bfdecd63b64c4fb3532cbd41c2518c2382a7;hb=17c6e7bbf0eaf0dcef64a24a727da024ca2fb651;hp=0d2df30117a726cdf56c0e011a51b7a3bebce936;hpb=a0fce0c603f6fc686dbab66268a786114786b188;p=platal.git diff --git a/modules/profile/groups.inc.php b/modules/profile/groups.inc.php index 0d2df30..0f27bfd 100644 --- a/modules/profile/groups.inc.php +++ b/modules/profile/groups.inc.php @@ -1,6 +1,6 @@ pid()); + ($value == 0) ? null : $value, $page->pid()); } public function getText($value) { @@ -54,7 +54,7 @@ class ProfileSettingBinets implements ProfileSetting { } - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { if (is_null($value)) { $value = array(); @@ -75,7 +75,7 @@ class ProfileSettingBinets implements ProfileSetting return $value; } - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { XDB::execute("DELETE FROM profile_binets WHERE pid = {?}", @@ -96,11 +96,11 @@ class ProfileSettingBinets implements ProfileSetting } } -class ProfileSettingGroups extends ProfilePage +class ProfilePageGroups extends ProfilePage { protected $pg_template = 'profile/groups.tpl'; - public function __construct(PlWizard &$wiz) + public function __construct(PlWizard $wiz) { parent::__construct($wiz); $this->settings['section'] = new ProfileSettingSection(); @@ -108,7 +108,7 @@ class ProfileSettingGroups extends ProfilePage $this->watched['section'] = $this->watched['binets'] = true; } - public function _prepare(PlPage &$page, $id) + public function _prepare(PlPage $page, $id) { $page->assign('mygroups', XDB::iterator("SELECT a.nom, a.site, a.diminutif, a.unsub_url, a.pub, m.perms FROM groups AS a @@ -122,7 +122,7 @@ class ProfileSettingGroups extends ProfilePage WHERE a.inscriptible != 0 AND (a.cat = 'GroupesX' OR a.cat = 'Institutions') ORDER BY a.cat, a.dom, a.nom")); - $page->assign('old', (int) date('Y') >= $page->profile->grad_year); + $page->assign('old', (int) date('Y') >= $this->profile->grad_year); } }