Page MenuHomestyx hydra

PhabricatorSpaceEditField.php
No OneTemporary

PhabricatorSpaceEditField.php

<?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();
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Nov 15, 5:14 PM (13 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
338230
Default Alt Text
PhabricatorSpaceEditField.php (941 B)

Event Timeline