Page MenuHomePhabricator

extensions/BetaFeatures - Use UserGroupManager instead of User group methods
Closed, InvalidPublic

Description

Find all usages of:

  • public function getGroups()
  • public function getGroupMemberships()
  • public function getEffectiveGroups()
  • public function getAutomaticGroups()
  • public function getFormerGroups()
  • public function addGroup()
  • public function removeGroup()
  • public function addAutopromoteOnceGroups())

and need to be replaced with corresponding UserGroupManager methods.
You can obtain UserGroupManager via MediaWikiServices::getInstance()->getUserGroupManager(), but it's preferred to inject it if possible.

Event Timeline

Vlad.shapik created this task.
Vlad.shapik renamed this task from extensions/BetaFeatures - hard deprecate User group methods to extensions/BetaFeatures - Use UserGroupManager instead of User group methods.May 6 2021, 2:35 PM

Uses of the current methods were in this extension ealier but now I do not see any uses.