1<?php
2
3require_once(dirname(__FILE__)."/../pfccommand.class.php");
4
5class pfcCommand_version extends pfcCommand
6{
7  var $usage = "/version";
8
9  function run(&$xml_reponse, $p)
10  {
11    $clientid    = $p["clientid"];
12    $param       = $p["param"];
13    $sender      = $p["sender"];
14    $recipient   = $p["recipient"];
15    $recipientid = $p["recipientid"];
16
17    $c =& pfcGlobalConfig::Instance();
18    $u =& pfcUserConfig::Instance();
19
20    $xml_reponse->script("pfc.handleResponse('".$this->name."', 'ok', '".$c->version."');");
21  }
22}
23
24?>