Changeset 5556
- Timestamp:
- 12/29/07 17:37:34 (5 years ago)
- Files:
-
- modules/branches/2.4/queues/page.queues.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/queues/page.queues.php
r5349 r5556 367 367 368 368 <tr> 369 <td><a href="#" class="info"><?php echo _("Join Empty:")?><span><?php echo _("If you wish to allow callers to join queues that currently have no agents, set this to yes ")?></span></a></td>369 <td><a href="#" class="info"><?php echo _("Join Empty:")?><span><?php echo _("If you wish to allow callers to join queues that currently have no agents, set this to yes. Set to strict if callers cannot join a queue with no members or only unavailable members")?></span></a></td> 370 370 <td> 371 371 <select name="joinempty"/> 372 372 <?php 373 373 $default = (isset($joinempty) ? $joinempty : 'yes'); 374 $items = array('yes'=>_("Yes"),' no'=>_("No"));374 $items = array('yes'=>_("Yes"),'strict'=>_("Strict"),'no'=>_("No")); 375 375 foreach ($items as $item=>$val) { 376 376 echo '<option value="'.$item.'" '. ($default == $item ? 'SELECTED' : '').'>'.$val; … … 382 382 383 383 <tr> 384 <td><a href="#" class="info"><?php echo _("Leave When Empty:")?><span><?php echo _("If you wish to remove callers from the queue if there are no agents present, set this to yes ")?></span></a></td>384 <td><a href="#" class="info"><?php echo _("Leave When Empty:")?><span><?php echo _("If you wish to remove callers from the queue if there are no agents present, set this to yes. Set to strict if callers cannot join a queue with no members or only unavailable members")?></span></a></td> 385 385 <td> 386 386 <select name="leavewhenempty"/> 387 387 <?php 388 388 $default = (isset($leavewhenempty) ? $leavewhenempty : 'no'); 389 $items = array('yes'=>_("Yes"),' no'=>_("No"));389 $items = array('yes'=>_("Yes"),'strict'=>_("Strict"),'no'=>_("No")); 390 390 foreach ($items as $item=>$val) { 391 391 echo '<option value="'.$item.'" '. ($default == $item ? 'SELECTED' : '').'>'.$val;
