Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106069001
ConpherenceWidgetView.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, Mar 22, 01:26
Size
519 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 01:26 (2 d)
Engine
blob
Format
Raw Data
Handle
25041226
Attached To
rPH Phabricator
ConpherenceWidgetView.php
View Options
<?php
/**
* @group conpherence
*/
abstract
class
ConpherenceWidgetView
extends
AphrontView
{
private
$conpherence
;
private
$updateURI
;
public
function
setUpdateURI
(
$update_uri
)
{
$this
->
updateURI
=
$update_uri
;
return
$this
;
}
public
function
getUpdateURI
()
{
return
$this
->
updateURI
;
}
public
function
setConpherence
(
ConpherenceThread
$conpherence
)
{
$this
->
conpherence
=
$conpherence
;
return
$this
;
}
public
function
getConpherence
()
{
return
$this
->
conpherence
;
}
}
Event Timeline
Log In to Comment