Page 1 of 1

Assign custom field in EVENT_REPORT_BUG_DATA

Posted: 25 Oct 2016, 09:54
by kaotul
class ... {

...
function init() {
plugin_event_hook( 'EVENT_REPORT_BUG_DATA', 'setFormalDate' );
}
}

function setFormalDate( $p_event, $p_bug_data ) {
$p_bug_data->due_date = time();
$p_bug_data->custom_Formal_Answer = time();
return $p_bug_data;
}
}

Only native column can be assigned. Nothing happen in custom field.

Note:
custom field
Name: Formal Answer
Type: date
Display When Reporting Issues: checked

Re: Assign custom field in EVENT_REPORT_BUG_DATA

Posted: 26 Oct 2016, 02:34
by kaotul
For your info:

This custom filed has been linked to all projects.


Thank your for any advice.
//Kaotul

Re: Assign custom field in EVENT_REPORT_BUG_DATA

Posted: 28 Oct 2016, 20:36
by cproensa
kaotul
custom fields are not part of the BugData object
you have to set custom fields using api calls

Re: Assign custom field in EVENT_REPORT_BUG_DATA

Posted: 01 Nov 2016, 10:26
by kaotul
cproensa wrote:kaotul
custom fields are not part of the BugData object
you have to set custom fields using api calls

Thank you very much. I appreciate it.
//Kaotul