Page MenuHomePhorge

DifferentialStoredCustomField.php
No OneTemporary

Size
992 B
Referenced Files
None
Subscribers
None

DifferentialStoredCustomField.php

<?php
abstract class DifferentialStoredCustomField
extends DifferentialCustomField {
private $value;
public function setValue($value) {
$this->value = $value;
return $this;
}
public function getValue() {
return $this->value;
}
public function shouldUseStorage() {
return true;
}
public function newStorageObject() {
return new DifferentialCustomFieldStorage();
}
protected function newStringIndexStorage() {
return new DifferentialCustomFieldStringIndex();
}
protected function newNumericIndexStorage() {
return new DifferentialCustomFieldNumericIndex();
}
public function getValueForStorage() {
return $this->value;
}
public function setValueFromStorage($value) {
$this->value = $value;
return $this;
}
public function setValueFromApplicationTransactions($value) {
$this->setValue($value);
return $this;
}
public function getConduitDictionaryValue() {
return $this->getValue();
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, May 4, 7:02 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67306
Default Alt Text
DifferentialStoredCustomField.php (992 B)

Event Timeline