1<?php 2 3require_once(dirname(__FILE__)."/../pfccommand.class.php"); 4 5class pfcCommand_init extends pfcCommand 6{ 7 function run(&$xml_reponse, $p) 8 { 9 $clientid = $p["clientid"]; 10 $param = $p["param"]; 11 $sender = $p["sender"]; 12 $recipient = $p["recipient"]; 13 $recipientid = $p["recipientid"]; 14 15 $c =& pfcGlobalConfig::Instance(); 16 $u =& pfcUserConfig::Instance(); 17 18 $cmd =& pfcCommand::Factory("quit"); 19 $cmd->run($xml_reponse, $p); 20 21 $u->destroy(); 22 } 23} 24 25?>