Extensions:Character Profile Custom Values

From Lorekeeper Wiki
Revision as of 18:31, 26 June 2024 by Camyza (talk | contribs) (Changed LK version to 2.0.0 from old develop, while also fixing up the installation steps to a numbered list with formatting.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Character Profile Custom Values
Description A short description
Author(s) Pure09/deep-ci
Status tested locally
Github ext-dev/custom-profile-values
LK Version 2.0.0
Contains a Migration






Lets users add extra fields to their character profiles. Inspired by toyhou.se, and profile display code stolen modified from Uri's organised character features extension! :>

Installation

This extension is built on the v2 branch.

  1. Pull the extension.
  2. Run php artisan migrate
  3. Run php artisan update-extension-tracker

Configuration

If you want to alter how this extension appears, you can edit the code directly in the character profile.blade.php

Usage

Example of edit profile with custom values installed

If values share a group, they will be categorized into the same card. Groups and titles are optional. Values can use HTML.

Example of a profile using custom values.

Troubleshooting

May cause conflict with any extensions that alter editing character profiles. Make sure updateCharacterProfile() in Characters/CharacterController.php contains 'custom_values_group', 'custom_values_name', 'custom_values_data',.

Example: if($service->updateCharacterProfile($request->only(['name', 'link', 'custom_values_group', 'custom_values_name', 'custom_values_data', 'text', 'is_gift_art_allowed', 'is_gift_writing_allowed', 'is_trading', 'alert_user']), $this->character, Auth::user(), !$isOwner)) {

Ping @Pure09 on the lorekeeper discord if you need assistance.

See Also