Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99261140
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
Wed, Jan 22, 21:06
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 21:06 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23746459
Attached To
rPH Phabricator
DiffusionFileContent.php
View Options
<?php
final
class
DiffusionFileContent
{
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