Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <?php endif ?>
  2.  
  3. <div class="col s4 m4">
  4. <label class="form-label"><?= __('Отправить письмо: '); ?></label>
  5. <select onchange="destinationAction()" class="input" name="destination" >
  6.  
  7. <?php if ($AuthUser->isAdmin()): ?>
  8. <option value="allusers"><?= __('All Users') ?></option>
  9. <option value="singleuser"><?= __('Single User') ?></option>
  10. <?php endif ?>
  11.  
  12. <?php if (!$AuthUser->isAdmin()): ?>
  13. <option value="singleuser"><?= __('Администрация') ?></option>
  14. <?php endif ?>
  15.  
  16.  
  17. </select>
  18. </div>
  19. <?php if (!$AuthUser->isAdmin()): ?>
  20. <div id="usernameSection" class="col s4 m4">
  21. <label class="form-label"><?= __('Эл.почта администрации') ?></label>
  22. <input class="input"
  23. value="support@igfeed.ru"
  24. name="usernameemail"
  25. id="usernameemail"
  26. type="text"
  27. placeholder="support@igfeed.ru"
  28. >
  29. </div>
  30. <?php else: ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement