Changeset 9834

Show
Ignore:
Timestamp:
06/15/10 14:08:17 (2 years ago)
Author:
GameGamer43
Message:

closes #4331 - added ext_meetmeadmin class, to handle the management of meetme conferences from within freepbx

Files:

Legend:

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

    r9693 r9834  
    896896} 
    897897 
     898class ext_meetmeadmin { 
     899  var $confno; 
     900  var $command; 
     901  var $user; 
     902 
     903  function ext_meetmeadmin($confno, $command, $user='') { 
     904    $this->confno = $confno; 
     905    $this->command = $command; 
     906    $this->user = $user; 
     907  } 
     908 
     909  function output() { 
     910    return "MeetMeAdmin(".$this->confno.",".$this->command.",".$this->user.")"; 
     911  } 
     912} 
     913 
    898914class ext_meetme { 
    899915  var $confno;