Manual:User.php

From Linux Web Expert

Revision as of 19:57, 1 January 2024 by imported>FuzzyBot (Updating to match new version of source page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Deskripsi

User.php implements the User class, which encapsulates all of the user-specific settings (user_id, name, rights, email address, options, last login time). Client classes use the getXXX() functions to access these fields. These functions do all the work of determining whether the user is logged in, whether the requested option can be satisfied from cookies or whether a database query is needed. Most of the settings needed for rendering normal pages are set in the cookie to minimize use of the database.

createAndPromote.php uses User::newFromName(), User::addToDatabase(), and User::saveSettings().

The User class used to contain password handling, but it was removed with the introduction of AuthManager.

Metode pabrik statis

  • static newFromName ($name, $validate= 'valid')
  • static newFromId ($id)
  • static newFromConfirmationCode ($code)
  • static newFromSession (WebRequest $request=null)
  • static newFromRow ($row, $data=null)

Metode lain

There are a whole host of other ones. See https://doc.wikimedia.org/mediawiki-core/master/php/classUser.html for the full list.

  • getId(): Get the user's ID. Returns 0 if the user is anonymous or nonexistent.
  • getName(): Get the user name, or the IP of an anonymous user.
  • getEmail(): Get the user's email address.
  • getGroups(): Get the list of explicit group memberships this user has. (The implicit * and user groups are not included.)
  • getRights(): Get the permissions this user has.

Lihat juga