Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1429946
ExtLinkText.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ExtLinkText.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
Wikimedia\Parsoid\Html2Wt\ConstrainedText
;
use
Wikimedia\Parsoid\Config\Env
;
use
Wikimedia\Parsoid\Config\SiteConfig
;
use
Wikimedia\Parsoid\DOM\Element
;
use
Wikimedia\Parsoid\NodeData\DataParsoid
;
use
Wikimedia\Parsoid\Utils\DOMCompat
;
use
Wikimedia\Parsoid\Utils\DOMUtils
;
/**
* An external link, like `[http://example.com]`.
*/
class
ExtLinkText
extends
ConstrainedText
{
/**
* @param string $text
* @param Element $node
* @param SiteConfig $siteConfig
* @param string $type
* The type of the link, as described by the `rel` attribute.
*/
public
function
__construct
(
string
$text
,
Element
$node
,
SiteConfig
$siteConfig
,
string
$type
)
{
parent
::
__construct
(
[
'text'
=>
$text
,
'node'
=>
$node
]
);
}
protected
static
function
fromSelSerImpl
(
string
$text
,
Element
$node
,
DataParsoid
$dataParsoid
,
Env
$env
,
array
$opts
):
?
ExtLinkText
{
$stx
=
$dataParsoid
->
stx
??
''
;
if
(
DOMUtils
::
hasRel
(
$node
,
'mw:ExtLink'
)
&&
!
in_array
(
$stx
,
[
'simple'
,
'piped'
],
true
)
)
{
$rel
=
DOMCompat
::
getAttribute
(
$node
,
'rel'
);
return
new
ExtLinkText
(
$text
,
$node
,
$env
->
getSiteConfig
(),
$rel
);
}
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 18:13 (7 h, 26 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
00/ca/35241d40c1504f78b7ba88f9cd85
Default Alt Text
ExtLinkText.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment