Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91394087
PhabricatorSpaceEditField.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, Nov 10, 16:40
Size
941 B
Mime Type
text/x-php
Expires
Tue, Nov 12, 16:40 (2 d)
Engine
blob
Format
Raw Data
Handle
22256678
Attached To
rPH Phabricator
PhabricatorSpaceEditField.php
View Options
<?php
final
class
PhabricatorSpaceEditField
extends
PhabricatorEditField
{
private
$policyField
;
public
function
setPolicyField
(
PhabricatorPolicyEditField
$policy_field
)
{
$this
->
policyField
=
$policy_field
;
return
$this
;
}
public
function
getPolicyField
()
{
return
$this
->
policyField
;
}
protected
function
newControl
()
{
// NOTE: This field doesn't do anything on its own, it just serves as a
// companion to the associated View Policy field.
return
null
;
}
protected
function
newHTTPParameterType
()
{
return
new
AphrontPHIDHTTPParameterType
();
}
protected
function
newConduitParameterType
()
{
return
new
ConduitPHIDParameterType
();
}
public
function
shouldReadValueFromRequest
()
{
return
$this
->
getPolicyField
()->
shouldReadValueFromRequest
();
}
public
function
shouldReadValueFromSubmit
()
{
return
$this
->
getPolicyField
()->
shouldReadValueFromSubmit
();
}
}
Event Timeline
Log In to Comment