Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119848923
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
Sun, Jun 29, 19:29
Size
519 B
Mime Type
text/x-php
Expires
Tue, Jul 1, 19:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27057242
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