Guest User

Untitled

a guest
Jul 22nd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. Ext.namespace("Zarafa.core.mapi");
  2.  
  3. Zarafa.core.mapi.IconIndex =
  4. {
  5.  
  6. mail_read : 0x00000100,
  7. mail_unread : 0x00000101,
  8. mail_submitted : 0x00000102,
  9. mail_unsent : 0x00000103,
  10. mail_receipt : 0x00000104,
  11. mail_replied : 0x00000105,
  12. mail_forwarded : 0x00000106,
  13. mail_remote : 0x00000107,
  14. mail_delivery_receipt : 0x00000108,
  15. mail_read_receipt : 0x00000109,
  16. mail_nondelivery_receipt : 0x0000010a,
  17. mail_nonread_receipt : 0x0000010b,
  18. mail_recall_s : 0x0000010c,
  19. mail_recall_f : 0x0000010d,
  20. mail_tracking : 0x0000010e,
  21. mail_oof : 0x0000011b,
  22. mail_recall : 0x0000011c,
  23. mail_tracked : 0x00000130,
  24.  
  25. contact_user : 0x00000200,
  26. contact_distlist : 0x00000202,
  27.  
  28. note : 0x00000300,
  29.  
  30. appt_appointment : 0x00000400,
  31. appt_recurring : 0x00000401,
  32. appt_meeting_single : 0x00000402,
  33. appt_meeting_recurring : 0x00000403,
  34. appt_meeting_request : 0x00000404,
  35. appt_meeting_accept : 0x00000405,
  36. appt_meeting_decline : 0x00000406,
  37. appt_meeting_tentative : 0x00000407,
  38. appt_meeting_cancel : 0x00000408,
  39. appt_meeting_update : 0x00000409,
  40. appt_meeting_forward : 0x0000040b,
  41.  
  42. task_normal : 0x00000500,
  43. task_recurring : 0x00000501,
  44. task_assignee : 0x00000502,
  45. task_assigner : 0x00000503,
  46.  
  47. journal_conversation : 0x00000601,
  48. journal_document : 0x00000612,
  49. journal_email : 0x00000602,
  50. journal_fax : 0x00000609,
  51. journal_letter : 0x0000060c,
  52. journal_meeting : 0x00000613,
  53. journal_meeting_cancel : 0x00000614,
  54. journal_meeting_request : 0x00000603,
  55. journal_meeting_response : 0x00000604,
  56. journal_access : 0x00000610,
  57. journal_excel : 0x0000060e,
  58. journal_powerpoint : 0x0000060f,
  59. journal_word : 0x0000060d,
  60. journal_note : 0x00000608,
  61. journal_phone_call : 0x0000060a,
  62. journal_remote_session : 0x00000615,
  63. journal_task : 0x0000060b,
  64. journal_task_request : 0x00000606,
  65. journal_task_response : 0x00000607,
  66. journal_other : 0x00000003,
  67.  
  68. getName : function(id)
  69. {
  70. for (key in this) if (this[key]==id) return key;
  71. return undefined;
  72. },
  73.  
  74. getClassName : function(id)
  75. {
  76. var name = this.getName(id) || 'mail_read';
  77. return 'icon_' + name.toLowerCase();
  78. }
  79.  
  80. };
Add Comment
Please, Sign In to add comment