Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110621104
PhabricatorDatasourceEditField.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, Apr 27, 05:01
Size
515 B
Mime Type
text/x-php
Expires
Tue, Apr 29, 05:01 (1 d, 9 h)
Engine
blob
Format
Raw Data
Handle
25834526
Attached To
rPH Phabricator
PhabricatorDatasourceEditField.php
View Options
<?php
final
class
PhabricatorDatasourceEditField
extends
PhabricatorTokenizerEditField
{
private
$datasource
;
public
function
setDatasource
(
PhabricatorTypeaheadDatasource
$datasource
)
{
$this
->
datasource
=
$datasource
;
return
$this
;
}
public
function
getDatasource
()
{
if
(!
$this
->
datasource
)
{
throw
new
PhutilInvalidStateException
(
'setDatasource'
);
}
return
$this
->
datasource
;
}
protected
function
newDatasource
()
{
return
id
(
clone
$this
->
getDatasource
());
}
}
Event Timeline
Log In to Comment