Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118888983
PhabricatorProjectProfile.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
Sun, Jun 22, 18:39
Size
540 B
Mime Type
text/x-php
Expires
Tue, Jun 24, 18:39 (2 d)
Engine
blob
Format
Raw Data
Handle
26917793
Attached To
rPH Phabricator
PhabricatorProjectProfile.php
View Options
<?php
final
class
PhabricatorProjectProfile
extends
PhabricatorProjectDAO
{
protected
$projectPHID
;
protected
$blurb
;
protected
$profileImagePHID
;
private
$profileImageFile
=
self
::
ATTACHABLE
;
public
function
getProfileImageURI
()
{
return
$this
->
getProfileImageFile
()->
getBestURI
();
}
public
function
attachProfileImageFile
(
PhabricatorFile
$file
)
{
$this
->
profileImageFile
=
$file
;
return
$this
;
}
public
function
getProfileImageFile
()
{
return
$this
->
assertAttached
(
$this
->
profileImageFile
);
}
}
Event Timeline
Log In to Comment