Difference between revisions of "Extensions:Online Status"

From Lorekeeper Wiki
Jump to navigation Jump to search
m (Preimpression moved page Is Online to Extensions:Is Online: Changing name to fit format)
(Updating extension with new functionality)
Tag: 2017 source edit
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Show whether users have been online or not in the last 15 minutes on the user list and on a user's profile.{{Extensioninfobox|title=is_online|desc=[bootstrap tables] - Show Online Users|auth=Preimpression|status=testing|github={{Github|user=preimpression|branch=isOnline}}|migration=no|package=no}}
+
{{Extensioninfobox|title=online-status|desc=[Online status] - Show Online Users|auth=Preimpression|status=stable|github={{Github|user=preimpression|branch=extension/online-status}}|LKVer:2.1.0|migration=no|package=no}}
<!-- Put a short summary of your extension here! -->
+
 
 +
Display the online status of users in the last 5 minutes on both the user list and individual user profiles. A tooltip appears when hovering to indicate the last online time. Additionally, there is a widget to display the number of users who are "currently online." By default, this widget is visible on the dashboard and user masterlist, but this can easily be edited.
 +
 
 
==Installation==
 
==Installation==
<!-- Describe installation. Include any requirements (such as packages), necessary commands, etc. -->
+
Pull the branch to your repo and merge it in. Make sure to check for code conflicts, especially if you have other extensions or have edited anything.
Pull the branch to your repo and merge it in.This package has bootstrap tables bundled in. Make sure to check for code conflicts, especially if you have other extensions or have edited anything.
 
  
 
==Configuration==
 
==Configuration==
<!-- Is any configuration necessary? Describe it here! -->
+
Run: <code>php artisan update-extension-tracker</code>
There is no special configuration beyond installation.
+
Run: <code>php artisan migrate</code>
 
 
==Usage==
 
<!-- Is there anything users should know about using your extension? -->
 
This extension has Bootstrap_Tables bundled in. This means that most locations on LK that are tables (such as the user list) etc are now bootstrap. Customize as you will - add "d-none d-md-block" to the class of particular divs if you would prefer they not show on mobile or small screens.
 
 
 
==Troubleshooting==
 
<!-- Are there known issues or errors that require user action? Who should they contact, and where, for support? -->
 
==See Also==
 
<!-- Any relevant other pages. You may consider linking to related extensions, for instance. -->
 
<br />
 

Latest revision as of 15:12, 3 February 2023

online-status
Description [Online status] - Show Online Users
Author(s) Preimpression
Status stable
Github extension/online-status
LK Version Unspecified




Display the online status of users in the last 5 minutes on both the user list and individual user profiles. A tooltip appears when hovering to indicate the last online time. Additionally, there is a widget to display the number of users who are "currently online." By default, this widget is visible on the dashboard and user masterlist, but this can easily be edited.

Installation

Pull the branch to your repo and merge it in. Make sure to check for code conflicts, especially if you have other extensions or have edited anything.

Configuration

Run: php artisan update-extension-tracker Run: php artisan migrate