Page MenuHomePhorge

DifferentialStoredCustomField.php
No OneTemporary

Size
909 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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Jun 29, 4:00 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
262553
Default Alt Text
DifferentialStoredCustomField.php (909 B)

Event Timeline