Changeset 6177
- Timestamp:
- 07/24/08 23:41:10 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php
r6122 r6177 1108 1108 1109 1109 class ext_congestion extends extension { 1110 function output() { 1111 return "Congestion(20)"; 1110 var $time; 1111 1112 function ext_congestion($time = '20') { 1113 $this->time = $time; 1114 } 1115 function output() { 1116 return "Congestion(".$this->time.")"; 1112 1117 } 1113 1118 } 1114 1119 1115 1120 class ext_busy extends extension { 1116 function output() { 1117 return "Busy(20)"; 1121 var $time; 1122 1123 function ext_busy($time = '20') { 1124 $this->time = $time; 1125 } 1126 function output() { 1127 return "Busy(".$this->time.")"; 1118 1128 } 1119 1129 }
