Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. $consent_fields = array();
  2. $consent_fields[] = new PMProRH_Field(
  3. "cform0",
  4. "html",
  5. array(
  6. "label"=>" ",
  7. "showmainlabel"=> false,
  8. "levels"=> array(1,2,3),
  9. "profile"=>true,
  10. "required"=>false,
  11. "name"=>"cform0",
  12. "html" => "<div><h4>CONSENT FOR RELEASE OF MEDICAL RECORDS</h4><p>I hereby request and authorize the release of the requested medical/vaccination information for my pet (s) to mypetrecordsonline.com. I release the Veterinarian and staff from any legal responsibility or liability for the release of information to the extent indicated as authorized herein. I understand I may revoke this authorization, but the revocation may not be applied retroactively once the information specified herein has been released.</p>"
  13. ),$atts));
  14.  
  15. $consent_fields[] = new PMProRH_Field(
  16. "cform1",
  17. "html",
  18. array(
  19. "label"=>" ",
  20. "showmainlabel"=> false,
  21. "levels"=> array(1,2,3),
  22. "profile"=>true,
  23. "required"=>false,
  24. "name"=>"cform1",
  25. "html" => "<p> Owners Initials "
  26. ));
  27. $consent_fields[] = new PMProRH_Field(
  28. "cinitials",
  29. "text",
  30. array(
  31. "label"=>" ",
  32. "maxlength" => 3,
  33. "showmainlabel"=> false,
  34. "levels"=> array(1,2,3),
  35. "profile"=>true,
  36. "required"=>false,
  37. "class"=>"harry-inline",
  38. "name"=>"cinitials",
  39. ));
  40. $consent_fields[] = new PMProRH_Field(
  41. "cform2",
  42. "html",
  43. array(
  44. "label"=>" ",
  45. "showmainlabel"=> false,
  46. "levels"=> array(1,2,3),
  47. "profile"=>true,
  48. "required"=>false,
  49. "name"=>"cform2",
  50. "html" => "</p></div>",
  51. ));
  52.  
  53. $consent_fields[] = new PMProRH_Field(
  54. "tos",
  55. "checkbox",
  56. array(
  57. "label"=>"<p>I accept the <a href="http://mpo.itsod.com/mypetrecordsonline/terms-of-use/" target="_blank">Terms of Service</a></p>",
  58. //"levels"=> array(1,2,3,4),
  59. "profile"=>false,
  60. "required"=>true
  61. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement