connect.php
上传用户:snow1005
上传日期:2015-11-10
资源大小:3151k
文件大小:1k
源码类别:

Ajax

开发平台:

JavaScript

  1. <?php
  2. /*
  3.  * qWikiOffice Desktop 0.8.1
  4.  * Copyright(c) 2007-2008, Integrated Technologies, Inc.
  5.  * licensing@qwikioffice.com
  6.  * 
  7.  * http://www.qwikioffice.com/license
  8.  */
  9. /*
  10.  * This script allows a module to connect to its server script.
  11.  * 
  12.  * Example ajax call:
  13.  * 
  14.  * Ext.Ajax.request({
  15.  *     url: this.app.connection,
  16.  *     // Could also pass moduleId and action in querystring like this,
  17.  *     // instead of in the Ext.Ajax.request params config option.
  18.  *      
  19.  *     // url: this.app.connection+'?action=myAction&moduleId='+this.id,
  20.  *      params: {
  21.  * action: 'myAction',
  22.  * moduleId: this.id,
  23.  *
  24.  * ...
  25.  * },
  26.  * success: function(){
  27.  * ...
  28.  * },
  29.  * failure: function(){
  30.  * ...
  31.  * },
  32.  * scope: this
  33.  * });
  34.  */
  35. $action = (isset($_GET["action"])) ? $_GET["action"] : $_POST["action"];
  36. $module_id = (isset($_GET["moduleId"])) ? $_GET["moduleId"] : $_POST["moduleId"];
  37. if($action != "" && $module_id != ""){
  38. require("system/os/os.php");
  39. if(class_exists('os')){
  40. $os = new os();
  41. $os->module->run_action($module_id, $action);
  42. }
  43. }else{
  44. print "{success: false}";
  45. }
  46. ?>