Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F449067
DifferentialStoredCustomField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
992 B
Referenced Files
None
Subscribers
None
DifferentialStoredCustomField.php
View Options
<?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
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 7:02 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67306
Default Alt Text
DifferentialStoredCustomField.php (992 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment