mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
43 lines
793 B
PHP
43 lines
793 B
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;
|
||
|
}
|
||
|
|
||
|
}
|