Page MenuHomec4science

PhabricatorExportField.php
No OneTemporary

File Metadata

Created
Tue, Feb 18, 17:41

PhabricatorExportField.php

<?php
abstract class PhabricatorExportField
extends Phobject {
private $key;
private $label;
public function setKey($key) {
$this->key = $key;
return $this;
}
public function getKey() {
return $this->key;
}
public function setLabel($label) {
$this->label = $label;
return $this;
}
public function getLabel() {
return $this->label;
}
public function getTextValue($value) {
return (string)$this->getNaturalValue($value);
}
public function getNaturalValue($value) {
return $value;
}
}

Event Timeline