X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fprofile%2Fgroups.inc.php;h=8aadbddc7632d1d744fe200a22eb189f67d3c512;hb=a6483c122527912e19f708b0c54086d620251c26;hp=461ba139c799a79752fa89a2b12da8aa512a4ad1;hpb=34465ab035104f739a54ec62660f04f874448627;p=platal.git diff --git a/modules/profile/groups.inc.php b/modules/profile/groups.inc.php index 461ba13..8aadbdd 100644 --- a/modules/profile/groups.inc.php +++ b/modules/profile/groups.inc.php @@ -19,7 +19,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ***************************************************************************/ -class ProfileSection implements ProfileSetting +class ProfileSettingSection implements ProfileSetting { public function value(ProfilePage &$page, $field, $value, &$success) { @@ -43,7 +43,7 @@ class ProfileSection implements ProfileSetting } } -class ProfileBinets implements ProfileSetting +class ProfileSettingBinets implements ProfileSetting { public function __construct() { @@ -87,15 +87,15 @@ class ProfileBinets implements ProfileSetting } } -class ProfileGroups extends ProfilePage +class ProfileSettingGroups extends ProfilePage { protected $pg_template = 'profile/groups.tpl'; public function __construct(PlWizard &$wiz) { parent::__construct($wiz); - $this->settings['section'] = new ProfileSection(); - $this->settings['binets'] = new ProfileBinets(); + $this->settings['section'] = new ProfileSettingSection(); + $this->settings['binets'] = new ProfileSettingBinets(); $this->watched['section'] = $this->watched['binets'] = true; }