Show
Ignore:
Timestamp:
02/19/12 11:12:44 (1 year ago)
Author:
p_lindheimer
Message:

closes #5260 adds SendDTMF to extensions class

Files:

Legend:

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

    r12992 r13477  
    12451245  } 
    12461246} 
     1247class ext_senddtmf extends extension { 
     1248  var $digits; 
     1249  function ext_senddtmf($digits) { 
     1250    $this->digits = $digits; 
     1251  }  
     1252  function output() { 
     1253    return 'SendDTMF('.$this->digits.')'; 
     1254  } 
     1255} 
    12471256class ext_system extends extension { 
    12481257  function output() {