Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120465885
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
Fri, Jul 4, 14:30
Size
540 B
Mime Type
text/x-php
Expires
Sun, Jul 6, 14:30 (2 d)
Engine
blob
Format
Raw Data
Handle
27193074
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