Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F573206
ProjectConduitAPIMethod.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
ProjectConduitAPIMethod.php
View Options
<?php
abstract
class
ProjectConduitAPIMethod
extends
ConduitAPIMethod
{
final
public
function
getApplication
()
{
return
PhabricatorApplication
::
getByClass
(
'PhabricatorProjectApplication'
);
}
protected
function
buildProjectInfoDictionary
(
PhabricatorProject
$project
)
{
$results
=
$this
->
buildProjectInfoDictionaries
(
array
(
$project
));
return
idx
(
$results
,
$project
->
getPHID
());
}
protected
function
buildProjectInfoDictionaries
(
array
$projects
)
{
assert_instances_of
(
$projects
,
'PhabricatorProject'
);
if
(!
$projects
)
{
return
array
();
}
$result
=
array
();
foreach
(
$projects
as
$project
)
{
$member_phids
=
$project
->
getMemberPHIDs
();
$member_phids
=
array_values
(
$member_phids
);
$project_slugs
=
$project
->
getSlugs
();
$project_slugs
=
array_values
(
mpull
(
$project_slugs
,
'getSlug'
));
$project_icon
=
$project
->
getDisplayIconKey
();
$result
[
$project
->
getPHID
()]
=
array
(
'id'
=>
$project
->
getID
(),
'phid'
=>
$project
->
getPHID
(),
'name'
=>
$project
->
getName
(),
'profileImagePHID'
=>
$project
->
getProfileImagePHID
(),
'icon'
=>
$project_icon
,
'color'
=>
$project
->
getColor
(),
'members'
=>
$member_phids
,
'slugs'
=>
$project_slugs
,
'dateCreated'
=>
$project
->
getDateCreated
(),
'dateModified'
=>
$project
->
getDateModified
(),
);
}
return
$result
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 5:45 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
119906
Default Alt Text
ProjectConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment