Changeset 9693

Show
Ignore:
Timestamp:
05/24/10 15:18:42 (3 years ago)
Author:
p_lindheimer
Message:

add ext_confbridge to extension class re #4213

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php

    r9689 r9693  
    880880} 
    881881 
     882class ext_confbridge { 
     883  var $confno; 
     884  var $options; 
     885  var $pin; 
     886   
     887  function ext_confbridge($confno, $options='', $pin='') { 
     888    $this->confno = $confno; 
     889    $this->options = $options; 
     890    $this->pin = $pin; 
     891  } 
     892   
     893  function output() { 
     894    return "ConfBridge(".$this->confno.",".$this->options.",".$this->pin.")"; 
     895  } 
     896} 
     897 
    882898class ext_meetme { 
    883899  var $confno;