Guest User

Untitled

a guest
May 26th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. if($mailbox['status'] == 'active' ||
  3. $mailbox['status'] == 'disabled') {
  4. $mailbox['type'] = 'mailbox';
  5. } else {
  6. $mailbox['type'] = 'redirect';
  7. }
  8.  
  9.  
  10. $mailbox['type'] = ($mailbox['status'] == 'active' ||
  11. $mailbox['status'] == 'disabled') ? 'mailbox' : 'redirect';
  12.  
  13.  
  14. switch($mailbox['status']) {
  15. case 'active':
  16. case 'disabled':
  17. $mailbox['type'] = 'mailbox';
  18. break;
  19. default:
  20. $mailbox['type'] = 'redirect';
  21. }
Add Comment
Please, Sign In to add comment