Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1426123
SubscriptionItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
SubscriptionItem.php
View Options
<?php
namespace
MediaWiki\Extension\DiscussionTools
;
use
MediaWiki\Linker\LinkTarget
;
use
MediaWiki\User\UserIdentity
;
/**
* Representation of a subscription to a given topic.
*/
class
SubscriptionItem
{
private
UserIdentity
$user
;
private
string
$itemName
;
private
LinkTarget
$linkTarget
;
private
int
$state
;
private
?
string
$createdTimestamp
;
private
?
string
$notifiedTimestamp
;
/**
* @param UserIdentity $user
* @param string $itemName
* @param LinkTarget $linkTarget
* @param int $state One of SubscriptionStore::STATE_* constants
* @param string|null $createdTimestamp When the subscription was created
* @param string|null $notifiedTimestamp When the item subscribed to last tried to trigger
* a notification (even if muted).
*/
public
function
__construct
(
UserIdentity
$user
,
string
$itemName
,
LinkTarget
$linkTarget
,
int
$state
,
?
string
$createdTimestamp
,
?
string
$notifiedTimestamp
)
{
$this
->
user
=
$user
;
$this
->
itemName
=
$itemName
;
$this
->
linkTarget
=
$linkTarget
;
$this
->
state
=
$state
;
$this
->
createdTimestamp
=
$createdTimestamp
;
$this
->
notifiedTimestamp
=
$notifiedTimestamp
;
}
public
function
getUserIdentity
():
UserIdentity
{
return
$this
->
user
;
}
public
function
getItemName
():
string
{
return
$this
->
itemName
;
}
public
function
getLinkTarget
():
LinkTarget
{
return
$this
->
linkTarget
;
}
/**
* Get the creation timestamp of this entry.
*/
public
function
getCreatedTimestamp
():
?
string
{
return
$this
->
createdTimestamp
;
}
/**
* Get the notification timestamp of this entry.
*/
public
function
getNotificationTimestamp
():
?
string
{
return
$this
->
notifiedTimestamp
;
}
/**
* Get the subscription status of this entry.
*
* @return int One of SubscriptionStore::STATE_* constants
*/
public
function
getState
():
int
{
return
$this
->
state
;
}
/**
* Check if the notification is muted
*/
public
function
isMuted
():
bool
{
return
$this
->
state
===
SubscriptionStore
::
STATE_UNSUBSCRIBED
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 12:37 (1 d, 7 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5a/4d/18749a7a00a42f5236742ad9bd41
Default Alt Text
SubscriptionItem.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment