Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122173553
PhabricatorRemarkupRuleYoutube.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 16, 08:31
Size
1020 B
Mime Type
text/x-php
Expires
Fri, Jul 18, 08:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27444489
Attached To
rPH Phabricator
PhabricatorRemarkupRuleYoutube.php
View Options
<?php
/**
* @group markup
*/
final
class
PhabricatorRemarkupRuleYoutube
extends
PhutilRemarkupRule
{
public
function
apply
(
$text
)
{
$this
->
uri
=
new
PhutilURI
(
$text
);
if
(
$this
->
uri
->
getDomain
()
&&
preg_match
(
'/(^|
\.
)youtube
\.
com$/'
,
$this
->
uri
->
getDomain
()))
{
return
$this
->
markupYoutubeLink
();
}
return
$text
;
}
public
function
markupYoutubeLink
()
{
$v
=
idx
(
$this
->
uri
->
getQueryParams
(),
'v'
);
if
(
$v
)
{
$youtube_src
=
'https://www.youtube.com/embed/'
.
$v
;
$iframe
=
'<div class="embedded-youtube-video">'
.
phutil_tag
(
'iframe'
,
array
(
'width'
=>
'650'
,
'height'
=>
'400'
,
'style'
=>
'margin: 1em auto; border: 0px;'
,
'src'
=>
$youtube_src
,
'frameborder'
=>
0
,
),
''
).
'</div>'
;
return
$this
->
getEngine
()->
storeText
(
$iframe
);
}
else
{
return
$this
->
uri
;
}
}
}
Event Timeline
Log In to Comment