bugid = $newbugid; } // ################################################################### /** * Assigns data into the $this->original or $this->modified array based * on the passed arrays of information and the fields to add (and what * name to add them under), the element they go into, and any prefix * * @access public * * @param bool TRUE for original, FALSE for modified * @param array Data array * @param array List of fields in the data array to add; in format of array('field name' => 'display name', 'display name 2', 'display name 3') * @param bool If TRUE, then the list of fields is used to exclude, not include * @param string Element to add to * @param string Field prefix */ function add_data($orig, $data, $fields, $exclude = false, $element = '', $prefix = '') { $array = ($orig ? 'original' : 'modified'); $prefix .= '.'; if ($exclude == false) { foreach ($fields AS $fname => $fdisplay) { if (is_numeric($fname)) { $fname = $fdisplay; } $this->{$array}["$element"]["$prefix$fdisplay"] = array('name' => $fname, 'value' => $data["$fname"]); } } else { foreach ($data AS $fname => $value) { if (!in_array($fname, $fields)) { $this->{$array}["$element"]["$prefix$fname"] = array('name' => $fname, 'value' => $value); } } } } } /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>