MediaWiki REL1_39
LogEventsList Class Reference
Inheritance diagram for LogEventsList:
Collaboration diagram for LogEventsList:

Public Member Functions

 __construct ( $context, $linkRenderer=null, $flags=0)
 
 beginLogEventsList ()
 
 endLogEventsList ()
 
 logLine ( $row)
 
 setAllowedActions ( $actions)
 Sets the action types allowed for log filtering To one action type may correspond several log_actions.
 
 showOptions ( $types=[], $user='', $page='', $pattern=false, $year=0, $month=0, $day=0, $filter=null, $tagFilter='', $action=null)
 Show options for the log list.
 
- Public Member Functions inherited from ContextSource
 canUseWikiPage ()
 Check whether a WikiPage object can be get with getWikiPage().
 
 exportSession ()
 Export the resolved user IP, HTTP headers, user ID, and session ID.
 
 getActionName ()
 Get the action name for the current web request.
 
 getAuthority ()
 
 getConfig ()
 
 getContext ()
 Get the base IContextSource object.
 
 getCsrfTokenSet ()
 Get a repository to obtain and match CSRF tokens.
 
 getLanguage ()
 
 getOutput ()
 
 getRequest ()
 
 getSkin ()
 
 getStats ()
 
 getTiming ()
 
 getTitle ()
 
 getUser ()
 
 getWikiPage ()
 Get the WikiPage object.
 
 msg ( $key,... $params)
 Get a Message object with context set Parameters are the same as wfMessage()
 
 setContext (IContextSource $context)
 

Static Public Member Functions

static getExcludeClause ( $db, $audience='public', Authority $performer=null)
 SQL clause to skip forbidden log types for this user.
 
static isDeleted ( $row, $field)
 
static showLogExtract (&$out, $types=[], $page='', $user='', $param=[])
 Show log extract.
 
static typeAction ( $row, $type, $action)
 
static userCan ( $row, $field, Authority $performer)
 Determine if the current user is allowed to view a particular field of this log row, if it's marked as deleted and/or restricted log type.
 
static userCanBitfield ( $bitfield, $field, Authority $performer)
 Determine if the current user is allowed to view a particular field of this log row, if it's marked as deleted.
 
static userCanViewLogType ( $type, Authority $performer)
 Determine if the current user is allowed to view a particular field of this log row, if it's marked as restricted log type.
 

Public Attributes

 $flags
 
const NO_ACTION_LINK = 1
 
const NO_EXTRA_USER_LINKS = 2
 
const USE_CHECKBOXES = 4
 

Protected Member Functions

 getLinkRenderer ()
 

Protected Attributes

array $allowedActions = null
 
bool $showTagEditUI
 

Detailed Description

Definition at line 34 of file LogEventsList.php.

Constructor & Destructor Documentation

◆ __construct()

LogEventsList::__construct ( $context,
$linkRenderer = null,
$flags = 0 )
Stability: stable
to call. As of the 1.36 release, there is no factory for this class, and it is instantiated directly by several extensions. The constructor needs to retain backwards compatibility until a factory has been introduced.
Parameters
IContextSource$context
LinkRenderer | null$linkRenderer
int$flagsCan be a combination of self::NO_ACTION_LINK, self::NO_EXTRA_USER_LINKS or self::USE_CHECKBOXES.

Definition at line 69 of file LogEventsList.php.

References $flags, getAuthority(), ContextSource\setContext(), and ChangeTags\showTagEditingUI().

Member Function Documentation

◆ beginLogEventsList()

LogEventsList::beginLogEventsList ( )
Returns
string

Definition at line 351 of file LogEventsList.php.

◆ endLogEventsList()

LogEventsList::endLogEventsList ( )
Returns
string

Definition at line 358 of file LogEventsList.php.

◆ getExcludeClause()

static LogEventsList::getExcludeClause ( $db,
$audience = 'public',
Authority $performer = null )
static

SQL clause to skip forbidden log types for this user.

Parameters
IDatabase$db
string$audiencePublic/user
Authority | null$performerUser to check, required when audience isn't public
Returns
string|bool String on success, false on failure.
Exceptions
InvalidArgumentException

Definition at line 793 of file LogEventsList.php.

◆ getLinkRenderer()

LogEventsList::getLinkRenderer ( )
protected
Since
1.30
Returns
LinkRenderer

Definition at line 83 of file LogEventsList.php.

Referenced by logLine().

◆ isDeleted()

static LogEventsList::isDeleted ( $row,
$field )
static
Parameters
stdClass$row
int$fieldOne of DELETED_* bitfield constants
Returns
bool

Definition at line 570 of file LogEventsList.php.

◆ logLine()

LogEventsList::logLine ( $row)
Parameters
stdClass$rowA single row from the result set
Returns
string Formatted HTML list item

Definition at line 366 of file LogEventsList.php.

References ChangeTags\formatSummaryRow(), getContext(), ContextSource\getLanguage(), getLinkRenderer(), and SpecialPage\getTitleValueFor().

◆ setAllowedActions()

LogEventsList::setAllowedActions ( $actions)

Sets the action types allowed for log filtering To one action type may correspond several log_actions.

Parameters
array$actions
Since
1.27

Definition at line 344 of file LogEventsList.php.

◆ showLogExtract()

static LogEventsList::showLogExtract ( & $out,
$types = [],
$page = '',
$user = '',
$param = [] )
static

Show log extract.

Either with text and a box (set $msgKey) or without (don't set $msgKey)

Parameters
OutputPage | string&$out
string | array$typesLog types to show
string | PageReference$pageThe page title to show log entries for
string$userThe user who made the log entries
array$paramAssociative Array with the following additional options:
  • lim Integer Limit of items to show, default is 50
  • conds Array Extra conditions for the query (e.g. 'log_action != ' . $dbr->addQuotes( 'revision' ))
  • showIfEmpty boolean Set to false if you don't want any output in case the loglist is empty if set to true (default), "No matching items in log" is displayed if loglist is empty
  • msgKey Array If you want a nice box with a message, set this to the key of the message. First element is the message key, additional optional elements are parameters for the key that are processed with wfMessage
  • offset Set to overwrite offset parameter in WebRequest set to '' to unset offset
  • wrap String Wrap the message in html (usually something like "<div ...>$1</div>").
  • flags Integer display flags (NO_ACTION_LINK,NO_EXTRA_USER_LINKS)
  • useRequestParams boolean Set true to use Pager-related parameters in the WebRequest
  • useMaster boolean Use primary DB
  • extraUrlParams array|bool Additional url parameters for "full log" link (if it is shown)
Returns
int Number of total log items (not limited by $lim)

Definition at line 599 of file LogEventsList.php.

References $flags, $s, DB_PRIMARY, and wfGetDB().

◆ showOptions()

LogEventsList::showOptions ( $types = [],
$user = '',
$page = '',
$pattern = false,
$year = 0,
$month = 0,
$day = 0,
$filter = null,
$tagFilter = '',
$action = null )

Show options for the log list.

Parameters
array | string$types
string$user
string | PageReference$page
bool$pattern
int | string$yearUse 0 to start with no year preselected.
int | string$monthA month in the 1..12 range. Use 0 to start with no month preselected.
int | string$dayA day in the 1..31 range. Use 0 to start with no month preselected.
array | null$filter
string$tagFilterTag to select by default
string | null$action

Definition at line 107 of file LogEventsList.php.

References ContextSource\getConfig(), getContext(), SpecialPage\getTitleFor(), and wfDeprecated().

◆ typeAction()

static LogEventsList::typeAction ( $row,
$type,
$action )
static
Parameters
stdClass$row
string | array$type
string | array$action
Returns
bool

Definition at line 503 of file LogEventsList.php.

References $type.

◆ userCan()

static LogEventsList::userCan ( $row,
$field,
Authority $performer )
static

Determine if the current user is allowed to view a particular field of this log row, if it's marked as deleted and/or restricted log type.

Parameters
stdClass$row
int$field
Authority$performerUser to check
Returns
bool

Definition at line 523 of file LogEventsList.php.

◆ userCanBitfield()

static LogEventsList::userCanBitfield ( $bitfield,
$field,
Authority $performer )
static

Determine if the current user is allowed to view a particular field of this log row, if it's marked as deleted.

Parameters
int$bitfieldCurrent field
int$field
Authority$performerUser to check
Returns
bool

Definition at line 537 of file LogEventsList.php.

References LogPage\DELETED_RESTRICTED, MediaWiki\Permissions\Authority\isAllowed(), and MediaWiki\Permissions\Authority\isAllowedAny().

◆ userCanViewLogType()

static LogEventsList::userCanViewLogType ( $type,
Authority $performer )
static

Determine if the current user is allowed to view a particular field of this log row, if it's marked as restricted log type.

Parameters
string$type
Authority$performerUser to check
Returns
bool

Definition at line 556 of file LogEventsList.php.

References $type, and MediaWiki\Permissions\Authority\isAllowed().

Member Data Documentation

◆ $allowedActions

array LogEventsList::$allowedActions = null
protected

Definition at line 49 of file LogEventsList.php.

◆ $flags

LogEventsList::$flags

Definition at line 39 of file LogEventsList.php.

Referenced by __construct(), and showLogExtract().

◆ $showTagEditUI

bool LogEventsList::$showTagEditUI
protected

Definition at line 44 of file LogEventsList.php.

◆ NO_ACTION_LINK

const LogEventsList::NO_ACTION_LINK = 1

Definition at line 35 of file LogEventsList.php.

◆ NO_EXTRA_USER_LINKS

const LogEventsList::NO_EXTRA_USER_LINKS = 2

Definition at line 36 of file LogEventsList.php.

◆ USE_CHECKBOXES

const LogEventsList::USE_CHECKBOXES = 4

Definition at line 37 of file LogEventsList.php.


The documentation for this class was generated from the following file: