Path: blob/master/src/applications/differential/customfield/DifferentialStoredCustomField.php
12256 views
<?php12abstract class DifferentialStoredCustomField3extends DifferentialCustomField {45private $value;67public function setValue($value) {8$this->value = $value;9return $this;10}1112public function getValue() {13return $this->value;14}1516public function shouldUseStorage() {17return true;18}1920public function newStorageObject() {21return new DifferentialCustomFieldStorage();22}2324protected function newStringIndexStorage() {25return new DifferentialCustomFieldStringIndex();26}2728protected function newNumericIndexStorage() {29return new DifferentialCustomFieldNumericIndex();30}3132public function getValueForStorage() {33return $this->value;34}3536public function setValueFromStorage($value) {37$this->value = $value;38return $this;39}4041public function setValueFromApplicationTransactions($value) {42$this->setValue($value);43return $this;44}4546public function getConduitDictionaryValue() {47return $this->getValue();48}4950}515253