53 parent::__construct();
55 if ( isset(
$params[
'sessionCookieName'] ) ) {
56 if ( !is_string(
$params[
'sessionCookieName'] ) ) {
57 throw new \InvalidArgumentException(
'sessionCookieName must be a string' );
59 $this->sessionCookieName =
$params[
'sessionCookieName'];
61 if ( isset(
$params[
'sessionCookieOptions'] ) ) {
62 if ( !is_array(
$params[
'sessionCookieOptions'] ) ) {
63 throw new \InvalidArgumentException(
'sessionCookieOptions must be an array' );
65 $this->sessionCookieOptions =
$params[
'sessionCookieOptions'];
81 if ( $this->sessionCookieName ===
null ) {
82 throw new \BadMethodCallException(
83 __METHOD__ .
' may not be called when $this->sessionCookieName === null'
87 $prefix = isset( $this->sessionCookieOptions[
'prefix'] )
88 ? $this->sessionCookieOptions[
'prefix']
89 : $this->config->get(
'CookiePrefix' );
90 $id =
$request->getCookie( $this->sessionCookieName, $prefix );
95 return $this->sessionCookieName !==
null;
103 if ( $this->sessionCookieName ===
null ) {
110 $this->logger->debug( __METHOD__ .
': Headers already sent' );
117 if ( !$this->config->get(
'ForceHTTPS' ) ) {
118 $response->setCookie(
'forceHTTPS',
'true',
null,
119 [
'prefix' =>
'',
'secure' =>
false ] +
$options );
128 if ( $this->sessionCookieName ===
null ) {
135 $this->logger->debug( __METHOD__ .
': Headers already sent' );
139 $response->clearCookie( $this->sessionCookieName, $this->sessionCookieOptions );
143 if ( $this->sessionCookieName ===
null ) {
147 $prefix = isset( $this->sessionCookieOptions[
'prefix'] )
148 ? $this->sessionCookieOptions[
'prefix']
149 : $this->config->get(
'CookiePrefix' );
154 return wfMessage(
'sessionprovider-nocookies' );
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest 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) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only $response