Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. private function fillCustomFields() {
  2. $jobValueSaver = M_test_BUILDER_JobValueSaver::getInstance();
  3. $values = [
  4. 'MultipleApprovers' => [$this->leiaUserId, $this->hanUserId],
  5. 'Approvers Table' => [
  6. ['Approvers' => new M_schema_field_UserPickerValue('Organa, Leia', $this->leiaUserId)],
  7. ['Approvers' => new M_schema_field_UserPickerValue('Solo, Han', $this->hanUserId)],
  8. ['Approvers' => new M_schema_field_UserPickerValue('Wookie, Chewbacca', $this->chewieUserId)]]
  9. ];
  10. $jobValueSaver->saveToRecord($this->jediJobId, $values);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement