Search found 1 match

by bitplus
28 Dec 2006, 07:15
Forum: Customizations
Topic: create dynamic custom field
Replies: 1
Views: 5588

I have a simple way if you don't want to use user_id as the custom field's value.
1. edit /core/custom_function_api.php, add code below:
function custom_function_default_enum_developers() {
$t_users = array();
$p_project_id = helper_get_current_project();
$p_access = DEVELOPER;
$t_users ...