Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92725173
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, Nov 23, 04:14
Size
519 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 04:14 (2 d)
Engine
blob
Format
Raw Data
Handle
22487986
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