Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/AbuseFilter/includes/ActionSpecifier.php
Ðазад
<?php namespace MediaWiki\Extension\AbuseFilter; use InvalidArgumentException; use MediaWiki\Linker\LinkTarget; use MediaWiki\User\UserIdentity; /** * Plain value object that univocally represents an action being filtered * @todo Add constants for possible actions? * @todo Add the timestamp */ class ActionSpecifier { /** @var string */ private $action; /** @var LinkTarget */ private $title; /** @var UserIdentity */ private $user; /** @var string */ private $requestIP; /** @var string|null */ private $accountName; /** * @param string $action Action being filtered (e.g. 'edit' or 'createaccount') * @param LinkTarget $title Where the current action is executed. This is the user page * for account creations. * @param UserIdentity $user * @param string $requestIP * @param string|null $accountName Required iff the action is an account creation */ public function __construct( string $action, LinkTarget $title, UserIdentity $user, string $requestIP, ?string $accountName ) { if ( $accountName === null && strpos( $action, 'createaccount' ) !== false ) { throw new InvalidArgumentException( '$accountName required for account creations' ); } $this->action = $action; $this->title = $title; $this->user = $user; $this->requestIP = $requestIP; $this->accountName = $accountName; } /** * @return string */ public function getAction(): string { return $this->action; } /** * @return LinkTarget */ public function getTitle(): LinkTarget { return $this->title; } /** * @return UserIdentity */ public function getUser(): UserIdentity { return $this->user; } /** * @return string * @note It may be an empty string for less recent changes. */ public function getIP(): string { return $this->requestIP; } /** * @return string|null */ public function getAccountName(): ?string { return $this->accountName; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка