Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96584183
PhabricatorMetaMTAMailSection.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
Sat, Dec 28, 13:35
Size
867 B
Mime Type
text/x-php
Expires
Mon, Dec 30, 13:35 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23193479
Attached To
rPH Phabricator
PhabricatorMetaMTAMailSection.php
View Options
<?php
/**
* Helper for building a rendered section.
*
* @task compose Composition
* @task render Rendering
* @group metamta
*/
final
class
PhabricatorMetaMTAMailSection
{
private
$plaintextFragments
=
array
();
private
$htmlFragments
=
array
();
public
function
getHTML
()
{
return
$this
->
htmlFragments
;
}
public
function
getPlaintext
()
{
return
implode
(
"
\n
"
,
$this
->
plaintextFragments
);
}
public
function
addHTMLFragment
(
$fragment
)
{
$this
->
htmlFragments
[]
=
$fragment
;
return
$this
;
}
public
function
addPlaintextFragment
(
$fragment
)
{
$this
->
plaintextFragments
[]
=
$fragment
;
return
$this
;
}
public
function
addFragment
(
$fragment
)
{
$this
->
plaintextFragments
[]
=
$fragment
;
$this
->
htmlFragments
[]
=
phutil_escape_html_newlines
(
phutil_tag
(
'div'
,
array
(),
$fragment
));
return
$this
;
}
}
Event Timeline
Log In to Comment