Changeset 5762
- Timestamp:
- 06/03/08 19:25:08 (4 years ago)
- Files:
-
- modules/branches/2.4/announcement/page.announcement.php (modified) (2 diffs)
- modules/branches/2.4/conferences/page.conferences.php (modified) (1 diff)
- modules/branches/2.4/core/page.did.php (modified) (1 diff)
- modules/branches/2.4/core/page.routing.php (modified) (1 diff)
- modules/branches/2.4/daynight/page.daynight.php (modified) (2 diffs)
- modules/branches/2.4/findmefollow/page.findmefollow.php (modified) (6 diffs)
- modules/branches/2.4/ivr/page.ivr.php (modified) (2 diffs)
- modules/branches/2.4/parking/page.parking.php (modified) (3 diffs)
- modules/branches/2.4/queues/page.queues.php (modified) (18 diffs)
- modules/branches/2.4/recordings/page.recordings.php (modified) (1 diff)
- modules/branches/2.4/ringgroups/page.ringgroups.php (modified) (5 diffs)
- modules/branches/2.4/timeconditions/page.timeconditions.php (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/announcement/page.announcement.php
r5322 r5762 101 101 <td><a href="#" class="info"><?php echo _("Recording")?><span><?php echo _("Message to be played.<br>To add additional recordings use the \"System Recordings\" MENU to the left")?></span></a></td> 102 102 <td> 103 <select name="recording" />103 <select name="recording"> 104 104 <?php 105 105 $tresults = recordings_list(); … … 118 118 <td><a href="#" class="info"><?php echo _("Repeat")?><span><?php echo _("Key to press that will allow for the message to be replayed. If you choose this option there will be a short delay inserted after the message. If a longer delay is needed it should be incoporated into the recording.")?></span></a></td> 119 119 <td> 120 <select name="repeat_msg" />120 <select name="repeat_msg"> 121 121 <?php 122 122 $default = isset($repeat_msg) ? $repeat_msg : ''; modules/branches/2.4/conferences/page.conferences.php
r5309 r5762 141 141 <td><a href="#" class="info"><?php echo _("Join Message:")?><span><?php echo _("Message to be played to the caller before joining the conference.<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 142 142 <td> 143 <select name="joinmsg" />143 <select name="joinmsg"> 144 144 <?php 145 145 $tresults = recordings_list(); modules/branches/2.4/core/page.did.php
r5716 r5762 196 196 <td><a href="#" class="info"><?php echo _("Music On Hold?")?><span><?php echo _("Set the MoH class that will be used for calls that come in on this route. For example, choose a type appropriate for routes coming in from a country which may have announcements in their language.")?></span></a></td> 197 197 <td> 198 <select name="mohclass" />198 <select name="mohclass"> 199 199 <?php 200 200 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); modules/branches/2.4/core/page.routing.php
r5572 r5762 331 331 <td><a href="#" class="info"><?php echo _("Music On Hold?")?><span><?php echo _("You can choose which music category to use. For example, choose a type appropriate for a destination country which may have announcements in the appropriate language.")?></span></a></td> 332 332 <td> 333 <select name="mohsilence" />333 <select name="mohsilence"> 334 334 <?php 335 335 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); modules/branches/2.4/daynight/page.daynight.php
r5658 r5762 126 126 if ($add == "add" && $itemid =="") { 127 127 ?> 128 <select name="itemid" />128 <select name="itemid"> 129 129 <?php 130 130 $ids = daynight_get_avail(); … … 154 154 </td> 155 155 <td> 156 <select name="state" />156 <select name="state"> 157 157 <option value="DAY" <?php echo ($state == 'DAY' ? 'SELECTED':'') ?> >Day</option> 158 158 <option value="NIGHT" <?php echo ($state == 'NIGHT' ? 'SELECTED':'') ?> >Night</option> modules/branches/2.4/findmefollow/page.findmefollow.php
r5340 r5762 197 197 </td> 198 198 <td> 199 <select name="pre_ring" />199 <select name="pre_ring"> 200 200 <?php 201 201 $default = (isset($pre_ring) ? $pre_ring : 0); … … 223 223 </td> 224 224 <td> 225 <select name="strategy" />225 <select name="strategy"> 226 226 <?php 227 227 $default = (isset($strategy) ? $strategy : 'ringall'); … … 285 285 <td><a href="#" class="info"><?php echo _("Announcement:")?><span><?php echo _("Message to be played to the caller before dialing this group.<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 286 286 <td> 287 <select name="annmsg" />287 <select name="annmsg"> 288 288 <?php 289 289 $tresults = recordings_list(); … … 314 314 <td><a href="#" class="info"><?php echo _("Play Music On Hold?")?><span><?php echo _("If you select a Music on Hold class to play, instead of 'Ring', they will hear that instead of Ringing while they are waiting for someone to pick up.")?></span></a></td> 315 315 <td> 316 <select name="ringing" />316 <select name="ringing"> 317 317 <?php 318 318 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); … … 351 351 <td><a href="#" class="info"><?php echo _("Remote Announce:")?><span><?php echo _("Message to be played to the person RECEIVING the call, if 'Confirm Calls' is enabled.<br><br>To add additional recordings use the \"System Recordings\" MENU to the left")?></span></a></td> 352 352 <td> 353 <select name="remotealert" />353 <select name="remotealert"> 354 354 <?php 355 355 $tresults = recordings_list(); … … 368 368 <td><a href="#" class="info"><?php echo _("Too-Late Announce:")?><span><?php echo _("Message to be played to the person RECEIVING the call, if the call has already been accepted before they push 1.<br><br>To add additional recordings use the \"System Recordings\" MENU to the left")?></span></a></td> 369 369 <td> 370 <select name="toolate" />370 <select name="toolate"> 371 371 <?php 372 372 $tresults = recordings_list(); modules/branches/2.4/ivr/page.ivr.php
r5700 r5762 142 142 <td><a href="#" class="info"><?php echo _("Directory Context");?><span><?php echo _("When # is selected, this is the voicemail directory context that is used");?></span></a></td> 143 143 <td> 144 <select name="dircontext" />144 <select name="dircontext"> 145 145 <?php 146 146 $tresults = voicemail_getVoicemail(); … … 165 165 <td><a href="#" class="info"><?php echo _("Announcement")?><span><?php echo _("Message to be played to the caller. To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 166 166 <td> 167 <select name="annmsg" />167 <select name="annmsg"> 168 168 <?php 169 169 $tresults = recordings_list(); modules/branches/2.4/parking/page.parking.php
r3912 r5762 73 73 <td><a href="#" class="info"><?php echo _("Number of Slots:")?><span><?php echo _("The total number of parking lot spaces to configure. Example, if 70 is the extension and 8 slots are configured, the parking slots will be 71-79")?></span></a></td> 74 74 <td align=right> 75 <select name="numslots" />75 <select name="numslots"> 76 76 <?php 77 77 $default = (isset($numslots) ? $numslots : 8); … … 86 86 <td><a href="#" class="info"><?php echo _("Parking Timeout:")?><span><?php echo _("The timeout period that a parked call will attempt to ring back the original parker if not answered")?></span></a></td> 87 87 <td align=right> 88 <select name="parkingtime" />88 <select name="parkingtime"> 89 89 <?php 90 90 $default = (isset($parkingtime) ? $parkingtime : 45); … … 119 119 <td><a href="#" class="info"><?php echo _("Announcement:")?><span><?php echo _("Optional message to be played to the orphaned caller prior to going on the to supplied destination below.<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 120 120 <td align=right> 121 <select name="parkingannmsg" />121 <select name="parkingannmsg"> 122 122 <?php 123 123 $tresults = recordings_list(); modules/branches/2.4/queues/page.queues.php
r5745 r5762 243 243 <td><a href="#" class="info"><?php echo _("Agent Announcement:")?><span><?php echo _("Announcement played to the Agent prior to bridging in the caller <br><br> Example: \"the Following call is from the Sales Queue\" or \"This call is from the Technical Support Queue\".<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 244 244 <td> 245 <select name="agentannounce" />245 <select name="agentannounce"> 246 246 <?php 247 247 $tresults = recordings_list(); … … 303 303 <td><a href="#" class="info"><?php echo _("Music on Hold Class:")?><span><?php echo _("Music (or Commercial) played to the caller while they wait in line for an available agent. Choose \"inherit\" if you want the MoH class to be what is currently selected, such as by the inbound route.<br><br> This music is defined in the \"Music on Hold\" Menu to the left.")?></span></a></td> 304 304 <td> 305 <select name="music" />305 <select name="music"> 306 306 <?php 307 307 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); … … 330 330 <td><a href="#" class="info"><?php echo _("Max Wait Time:")?><span><?php echo _("The maximum number of seconds a caller can wait in a queue before being pulled out. (0 for unlimited).")?></span></a></td> 331 331 <td> 332 <select name="maxwait" />332 <select name="maxwait"> 333 333 <?php 334 334 $default = (isset($maxwait) ? $maxwait : 0); … … 356 356 <td><a href="#" class="info"><?php echo _("Max Callers:")?><span><?php echo _("Maximum number of people waiting in the queue (0 for unlimited)")?></span></a></td> 357 357 <td> 358 <select name="maxlen" />358 <select name="maxlen"> 359 359 <?php 360 360 $default = (isset($maxlen) ? $maxlen : 0); … … 370 370 <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> 371 371 <td> 372 <select name="joinempty" />372 <select name="joinempty"> 373 373 <?php 374 374 $default = (isset($joinempty) ? $joinempty : 'yes'); … … 385 385 <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> 386 386 <td> 387 <select name="leavewhenempty" />387 <select name="leavewhenempty"> 388 388 <?php 389 389 $default = (isset($leavewhenempty) ? $leavewhenempty : 'no'); … … 411 411 </td> 412 412 <td> 413 <select name="strategy" />413 <select name="strategy"> 414 414 <?php 415 415 $default = (isset($strategy) ? $strategy : 'ringall'); … … 426 426 <td><a href="#" class="info"><?php echo _("Agent Timeout:")?><span><?php echo _("The number of seconds an agent's phone can ring before we consider it a timeout. Unlimited or other timeout values may still be limited by system ringtime or individual extension defaults.")?></span></a></td> 427 427 <td> 428 <select name="timeout" />428 <select name="timeout"> 429 429 <?php 430 430 $default = (isset($timeout) ? $timeout : 15); … … 441 441 <td><a href="#" class="info"><?php echo _("retry:")?><span><?php echo _("The number of seconds we wait before trying all the phones again")?></span></a></td> 442 442 <td> 443 <select name="retry" />443 <select name="retry"> 444 444 <?php 445 445 $default = (isset($retry) ? $retry : 5); … … 455 455 <td><a href="#" class="info"><?php echo _("Wrap-Up-Time:")?><span><?php echo _("After a successful call, how many seconds to wait before sending a potentially free agent another call (default is 0, or no delay)")?></span></a></td> 456 456 <td> 457 <select name="wrapuptime" />457 <select name="wrapuptime"> 458 458 <?php 459 459 $default = (isset($wrapuptime) ? $wrapuptime : 0); … … 469 469 <td><a href="#" class="info"><?php echo _("Call Recording:")?><span><?php echo _("Incoming calls to agents can be recorded. (saved to /var/spool/asterisk/monitor)")?></span></a></td> 470 470 <td> 471 <select name="monitor-format" />471 <select name="monitor-format"> 472 472 <?php 473 473 $default = (empty($thisQ['monitor-format']) ? "no" : $thisQ['monitor-format']); … … 484 484 <td><a href="#" class="info"><?php echo _("Event When Called:")?><span><?php echo _("When this option is set to YES, the following manager events will be generated: AgentCalled, AgentDump, AgentConnect and AgentComplete.")?></span></a></td> 485 485 <td> 486 <select name="eventwhencalled" />486 <select name="eventwhencalled"> 487 487 <?php 488 488 $default = (isset($eventwhencalled) ? $eventwhencalled : 'no'); … … 499 499 <td><a href="#" class="info"><?php echo _("Member Status:")?><span><?php echo _("When if this is option is set to YES, the following manager event will be generated: QueueMemberStatus")?></span></a></td> 500 500 <td> 501 <select name="eventmemberstatus" />501 <select name="eventmemberstatus"> 502 502 <?php 503 503 $default = (isset($eventmemberstatus) ? $eventmemberstatus : 'no'); … … 514 514 <td><a href="#" class="info"><?php echo _("Skip Busy Agents:")?><span><?php echo _("When set to Yes, agents who are on an occupied phone will be skipped as if the line were returning busy. This means that Call Waiting or multi-line phones will not be presented with the call and in the various hunt style ring strategies, the next agent will be attempted.")?></span></a></td> 515 515 <td> 516 <select name="cwignore" />516 <select name="cwignore"> 517 517 <?php 518 518 $default = (isset($cwignore) ? $cwignore : 'no'); … … 530 530 <td><a href="#" class="info"><?php echo _("Frequency:")?><span><?php echo _("How often to announce queue position and estimated holdtime (0 to Disable Announcements).")?></span></a></td> 531 531 <td> 532 <select name="announcefreq" />532 <select name="announcefreq"> 533 533 <?php 534 534 $default = (isset($thisQ['announce-frequency']) ? $thisQ['announce-frequency'] : 0); … … 544 544 <td><a href="#" class="info"><?php echo _("Announce Position:")?><span><?php echo _("Announce position of caller in the queue?")?></span></a></td> 545 545 <td> 546 <select name="announceposition" />546 <select name="announceposition"> 547 547 <?php //setting to "no" will override sounds queue-youarenext, queue-thereare, queue-callswaitingĂ 548 548 $default = (isset($thisQ['announce-position']) ? $thisQ['announce-position'] : "no"); … … 627 627 <td><a href="#" class="info"><?php echo _("Repeat Frequency:")?><span><?php echo _("How often to announce a voice menu to the caller (0 to Disable Announcements).")?></span></a></td> 628 628 <td> 629 <select name="pannouncefreq" />629 <select name="pannouncefreq"> 630 630 <?php 631 631 $default = (isset($thisQ['periodic-announce-frequency']) ? $thisQ['periodic-announce-frequency'] : 0); … … 646 646 <td><a href="#" class="info"><?php echo _("Join Announcement:")?><span><?php echo _("Announcement played to callers once prior to joining the queue.<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 647 647 <td> 648 <select name="joinannounce" />648 <select name="joinannounce"> 649 649 <?php 650 650 $tresults = recordings_list(); modules/branches/2.4/recordings/page.recordings.php
r5658 r5762 371 371 <input type="hidden" name="action" value="newsysrec"> 372 372 <input type="hidden" name="display" value="recordings"> 373 <select name="sysrec" />373 <select name="sysrec"> 374 374 <?php 375 375 foreach ($sysrecs as $srcount => $sr) { modules/branches/2.4/ringgroups/page.ringgroups.php
r5745 r5762 211 211 </a></td> 212 212 <td> 213 <select name="strategy" />213 <select name="strategy"> 214 214 <?php 215 215 $default = (isset($strategy) ? $strategy : 'ringall'); … … 270 270 <td><a href="#" class="info"><?php echo _("Announcement:")?><span><?php echo _("Message to be played to the caller before dialing this group.<br><br>To add additional recordings please use the \"System Recordings\" MENU to the left")?></span></a></td> 271 271 <td> 272 <select name="annmsg" />272 <select name="annmsg"> 273 273 <?php 274 274 $tresults = recordings_list(); … … 298 298 <td><a href="#" class="info"><?php echo _("Play Music On Hold?")?><span><?php echo _("If you select a Music on Hold class to play, instead of 'Ring', they will hear that instead of Ringing while they are waiting for someone to pick up.")?></span></a></td> 299 299 <td> 300 <select name="ringing" />300 <select name="ringing"> 301 301 <?php 302 302 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); … … 335 335 <td><a href="#" class="info"><?php echo _("Remote Announce:")?><span><?php echo _("Message to be played to the person RECEIVING the call, if 'Confirm Calls' is enabled.<br><br>To add additional recordings use the \"System Recordings\" MENU to the left")?></span></a></td> 336 336 <td> 337 <select name="remotealert" />337 <select name="remotealert"> 338 338 <?php 339 339 $tresults = recordings_list(); … … 353 353 <td><a href="#" class="info"><?php echo _("Too-Late Announce:")?><span><?php echo _("Message to be played to the person RECEIVING the call, if the call has already been accepted before they push 1.<br><br>To add additional recordings use the \"System Recordings\" MENU to the left")?></span></a></td> 354 354 <td> 355 <select name="toolate" />355 <select name="toolate"> 356 356 <?php 357 357 $tresults = recordings_list(); modules/branches/2.4/timeconditions/page.timeconditions.php
r5284 r5762 176 176 } 177 177 ?> 178 <select name="hour_start" />178 <select name="hour_start"> 179 179 <?php 180 180 $default = ''; … … 189 189 </select> 190 190 <nbsp>:<nbsp> 191 <select name="minute_start" />191 <select name="minute_start"> 192 192 <?php 193 193 $default = ''; … … 206 206 <td><?php echo _("Time to finish:")?></td> 207 207 <td> 208 <select name="hour_finish" />208 <select name="hour_finish"> 209 209 <?php 210 210 $default = ''; … … 219 219 </select> 220 220 <nbsp>:<nbsp> 221 <select name="minute_finish" />221 <select name="minute_finish"> 222 222 <?php 223 223 $default = ''; … … 245 245 <td><?php echo _("Week Day Start:")?></td> 246 246 <td> 247 <select name="wday_start" />247 <select name="wday_start"> 248 248 <?php 249 249 if ( $wday_start == '-' ) { $default = ' selected'; } … … 284 284 <td><?php echo _("Week Day finish:")?></td> 285 285 <td> 286 <select name="wday_finish" />286 <select name="wday_finish"> 287 287 <?php 288 288 if ( $wday_finish == '-' ) { $default = ' selected'; } … … 332 332 ?> 333 333 <td> 334 <select name="mday_start" />334 <select name="mday_start"> 335 335 <?php 336 336 $default = ''; … … 348 348 <td><?php echo _("Month Day finish:")?></td> 349 349 <td> 350 <select name="mday_finish" />350 <select name="mday_finish"> 351 351 <?php 352 352 $default = ''; … … 374 374 ?> 375 375 <td> 376 <select name="month_start" />376 <select name="month_start"> 377 377 <?php 378 378 if ( $month_start == '-' ) { $default = ' selected'; } … … 432 432 <td><?php echo _("Month finish:")?></td> 433 433 <td> 434 <select name="month_finish" />434 <select name="month_finish"> 435 435 <?php 436 436 if ( $month_finish == '-' ) { $default = ' selected'; }
