Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92730982
DiffusionFileContent.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, Nov 23, 05:39
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 05:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22488623
Attached To
rPH Phabricator
DiffusionFileContent.php
View Options
<?php
final
class
DiffusionFileContent
extends
Phobject
{
private
$corpus
;
private
$blameDict
;
private
$revList
;
private
$textList
;
public
function
setTextList
(
array
$text_list
)
{
$this
->
textList
=
$text_list
;
return
$this
;
}
public
function
getTextList
()
{
if
(!
$this
->
textList
)
{
return
phutil_split_lines
(
$this
->
getCorpus
(),
$retain_ends
=
false
);
}
return
$this
->
textList
;
}
public
function
setRevList
(
array
$rev_list
)
{
$this
->
revList
=
$rev_list
;
return
$this
;
}
public
function
getRevList
()
{
return
$this
->
revList
;
}
public
function
setBlameDict
(
array
$blame_dict
)
{
$this
->
blameDict
=
$blame_dict
;
return
$this
;
}
public
function
getBlameDict
()
{
return
$this
->
blameDict
;
}
public
function
setCorpus
(
$corpus
)
{
$this
->
corpus
=
$corpus
;
return
$this
;
}
public
function
getCorpus
()
{
return
$this
->
corpus
;
}
public
function
toDictionary
()
{
return
array
(
'corpus'
=>
$this
->
getCorpus
(),
'blameDict'
=>
$this
->
getBlameDict
(),
'revList'
=>
$this
->
getRevList
(),
'textList'
=>
$this
->
getTextList
(),
);
}
public
static
function
newFromConduit
(
array
$dict
)
{
return
id
(
new
DiffusionFileContent
())
->
setCorpus
(
$dict
[
'corpus'
])
->
setBlameDict
(
$dict
[
'blameDict'
])
->
setRevList
(
$dict
[
'revList'
])
->
setTextList
(
$dict
[
'textList'
]);
}
}
Event Timeline
Log In to Comment