Skip to content
Snippets Groups Projects
Commit ff42aef8 authored by Aaron Bauman's avatar Aaron Bauman Committed by Aaron Bauman
Browse files

Issue #3492972 by aaronbauman: Show salesforce field name alongside field label

parent 245a8f2c
No related branches found
No related tags found
1 merge request!89Issue #3492972 by aaronbauman: Show salesforce field name alongside field label
Pipeline #451429 canceled
......@@ -281,7 +281,9 @@ class RestResponseDescribe extends RestResponse {
*/
public function getFieldOptions() {
if (!isset($this->fieldOptions)) {
$this->fieldOptions = array_column($this->fields, 'label', 'name');
foreach ($this->fields as $field) {
$this->fieldOptions[$field['name']] = $field['label'] . ' (' . $field['name'] . ')';
}
asort($this->fieldOptions);
}
return $this->fieldOptions;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment