Show
Ignore:
Timestamp:
01/06/08 12:39:48 (4 years ago)
Author:
p_lindheimer
Message:

#2560 - convert iax notransfer to transfer in 1.4+; ad blindxfer, atxfer and automon to featurecode admin panel

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.4/core/install.php

    r4878 r5563  
    4343unset($fcc); 
    4444 
     45$fcc = new featurecode('core', 'blindxfer'); 
     46$fcc->setDescription('In-Call Asterisk Blind Transfer'); 
     47$fcc->setDefault('##'); 
     48$fcc->update(); 
     49unset($fcc); 
     50 
     51$fcc = new featurecode('core', 'atxfer'); 
     52$fcc->setDescription('In-Call Asterisk Attended Transfer'); 
     53$fcc->setDefault('*2'); 
     54$fcc->update(); 
     55unset($fcc); 
     56 
     57$fcc = new featurecode('core', 'automon'); 
     58$fcc->setDescription('In-Call Asterisk Toggle Call Recording'); 
     59$fcc->setDefault('*1'); 
     60$fcc->update(); 
     61unset($fcc); 
     62 
    4563?>