Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106026992
ManiphestCustomField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Mar 21, 16:04
Size
863 B
Mime Type
text/x-php
Expires
Sun, Mar 23, 16:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24351783
Attached To
rPH Phabricator
ManiphestCustomField.php
View Options
<?php
abstract
class
ManiphestCustomField
extends
PhabricatorCustomField
{
public
function
newStorageObject
()
{
return
new
ManiphestCustomFieldStorage
();
}
protected
function
newStringIndexStorage
()
{
return
new
ManiphestCustomFieldStringIndex
();
}
protected
function
newNumericIndexStorage
()
{
return
new
ManiphestCustomFieldNumericIndex
();
}
/**
* When the user creates a task, the UI prompts them to "Create another
* similar task". This copies some fields (e.g., Owner and CCs) but not other
* fields (e.g., description). If this custom field should also be copied,
* return true from this method.
*
* @return bool True to copy the default value from the template task when
* creating a new similar task.
*/
public
function
shouldCopyWhenCreatingSimilarTask
()
{
return
false
;
}
}
Event Timeline
Log In to Comment