Extension:LastUserLogin/de-formal

This page is a translated version of the page Extension:LastUserLogin and the translation is 18% complete.
MediaWiki extensions manual
LastUserLogin
Release status: stable
Implementation Special page , User activity
Description Displays the last time a user logged in
Author(s) Justin G. Cramer, Danila Ulyanov, Thomas Klein
Maintainer(s) Sophivorus
Latest version 1.6 (2021-02-04)
MediaWiki 1.29+
PHP 5.5+
License GNU General Public License 3.0 or later
Download
lastlogin
Quarterly downloads 26 (Ranked 123rd)
Translate the LastUserLogin extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The LastUserLogin extension introduces a special page that displays a simple table of users and the last time they logged in.

This can be useful if your wiki is used as a knowledge base for outside personnel. If you have a requirement that they check the wiki prior to placing a call or email, LastUserLogin can be used to verify that this policy is being enforced.

Installation

  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens LastUserLogin im Ordner extensions/ ablegen.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/LastUserLogin
  • Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
    wfLoadExtension( 'LastUserLogin' );
    
  •   Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Usage

Once installed, visit Special:LastUserLogin to see the times at which each user last logged in.

This extension introduces the 'lastlogin' right which is needed to view the special page, and by default is only granted to admins (sysops).

Technical details

The extension works by updating the user_touched column every time a user loads a page. This is done via the BeforeInitialize hook.

Siehe auch