Lines Matching refs:xml_reponse
222 $xml_reponse = new pfcResponse();
281 pfcCommand::RunPendingCmdToPlay($u->nickid, $cmdp, $xml_reponse);
290 $cmd->run($xml_reponse, $cmdp);
292 @$cmd->run($xml_reponse, $cmdp);
304 $cmd->run($xml_reponse, $cmdp);
306 @$cmd->run($xml_reponse, $cmdp);
325 $cmd->run($xml_reponse, $cmdp);
327 @$cmd->run($xml_reponse, $cmdp);
343 if ($xml_reponse->getCommandCount() == 0) die();
345 return $xml_reponse;
349 function &loadStyles($theme = 'default', &$xml_reponse) argument
351 if ($xml_reponse == null) $xml_reponse = new pfcResponse();
394 $xml_reponse->script($js);
396 return $xml_reponse;
399 function &loadScripts($theme, &$xml_reponse) argument
401 if ($xml_reponse == null) $xml_reponse = new pfcResponse();
525 $xml_reponse->script($js);
526 return $xml_reponse;
530 function loadInterface($theme = 'default', &$xml_reponse) argument
532 if ($xml_reponse == null) $xml_reponse = new pfcResponse();
554 $xml_reponse->remove('pfc_loader'); // to hide the loading box
555 $xml_reponse->update('pfc_container', $html);
557 return $xml_reponse;
562 $xml_reponse = new pfcResponse();
564 $this->loadInterface($theme,$xml_reponse);
565 $this->loadStyles($theme,$xml_reponse);
566 $this->loadScripts($theme,$xml_reponse);
568 return $xml_reponse;