Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F21409846
DifferentialStoredCustomField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
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
Fri, Jul 31, 11:29 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
16388213
Default Alt Text
DifferentialStoredCustomField.php (992 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment