X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fprofile%2Fgroups.inc.php;h=0f27bfdecd63b64c4fb3532cbd41c2518c2382a7;hb=2b13c66c646c46b57037bc6b1ff0adf84988b3fc;hp=2d7caaa3be9738ad0361b5cec2711ee3d039e7bd;hpb=5b48ebf46ef939d701852d2117bbcf308036027c;p=platal.git diff --git a/modules/profile/groups.inc.php b/modules/profile/groups.inc.php index 2d7caaa..0f27bfd 100644 --- a/modules/profile/groups.inc.php +++ b/modules/profile/groups.inc.php @@ -21,7 +21,7 @@ class ProfileSettingSection implements ProfileSetting { - public function value(ProfilePage &$page, $field, $value, &$success) + public function value(ProfilePage $page, $field, $value, &$success) { $success = true; if (is_null($value)) { @@ -34,7 +34,7 @@ class ProfileSettingSection implements ProfileSetting return intval($value); } - public function save(ProfilePage &$page, $field, $value) + public function save(ProfilePage $page, $field, $value) { XDB::execute("UPDATE profiles SET section = {?} @@ -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 = {?}", @@ -100,7 +100,7 @@ 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 ProfilePageGroups 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