Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T12394: Install UserProfileV2 #5636

Merged
merged 8 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions ManageWikiExtensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -3339,6 +3339,22 @@
],
'section' => 'other',
],
'userprofilev2' => [
'name' => 'UserProfileV2',
'linkPage' => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:UserProfileV2',
'conflicts' => 'socialprofile',
'requires' => [],
'install' => [
'permissions' => [
'sysop' => [
'permissions' => [
'profilemanager',
],
],
],
],
'section' => 'other',
],
'variables' => [
'name' => 'Variables',
'linkPage' => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:Variables',
Expand Down
19 changes: 19 additions & 0 deletions ManageWikiSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3886,6 +3886,25 @@
'help' => 'Whether or not to show the normal MediaWiki external link icon when using the Chameleon skin.',
'requires' => [],
],
'wgUserProfileV2Color' => [
'name' => 'UserProfileV2 Accent Color',
'from' => 'userprofilev2',
'type' => 'text',
'overridedefault' => '#E1E1E1',
'section' => 'styling',
'help' => 'The accent/secondary color used for UserProfileV2. This is used as a background colour for the user group tags and the avatar edit button.',
'requires' => [],
],
'wgUserProfileV2AvatarBorderRadius' => [
'name' => 'UserProfileV2 Avatar Border-radius',
'from' => 'userprofilev2',
'type' => 'text',
'overridedefault' => "50%",
'section' => 'styling',
'help' => 'The border-radius applied to the UserProfileV2 avatar.',
'requires' => [],
],


// Wikibase
'wmgWikibaseRepoUrl' => [
Expand Down
Loading