当前位置: 首页>>代码示例>>PHP>>正文


PHP sajax_handle_client_request函数代码示例

本文整理汇总了PHP中sajax_handle_client_request函数的典型用法代码示例。如果您正苦于以下问题:PHP sajax_handle_client_request函数的具体用法?PHP sajax_handle_client_request怎么用?PHP sajax_handle_client_request使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了sajax_handle_client_request函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     sajax_init();
     sajax_export("AJAXSynchronizeDB");
     sajax_export("AJAXSynchronizeOffersCount");
     sajax_handle_client_request();
     $this->synchronizeDB = $this->GetSynchronizeJS();
     $this->synchronizeOffersCount = $this->GetSynchronizeOffersCount();
     $this->ajax = sajax_show_javascript();
 }
开发者ID:uirapuru,项目名称:virgoapi,代码行数:10,代码来源:api.php

示例2: SUEXEC

        }
        $reqarg .= " {$guid}/{$versarg}";
        SUEXEC($uid, "{$unix_pid},{$unix_gid}", "webtemplate_control {$reqarg} {$optarg}", SUEXEC_ACTION_DIE);
    }
    $template->Refresh();
    $html = "";
    if (!$no_output) {
        $html = Show("graph", 0, 0);
    }
    return $html;
}
#
# See if this request is to the above function. Does not return
# if it is. Otherwise return and continue on.
#
sajax_handle_client_request();
#
# Active/Inactive is a plain menu link.
#
if (isset($action) && ($action == "activate" || $action == "inactivate")) {
    GraphChange($action, 0, 1);
}
# Delete is just plain special!
if (isset($action) && $action == "deletetemplate" && isset($confirmed) && $confirmed == "yep") {
    PAGEHEADER("Delete Template: {$guid}/{$vers}");
    STARTBUSY("Deleting template {$guid}/{$vers} recursively");
    # Pass recursive option all the time.
    $retval = SUEXEC($uid, "{$unix_pid},{$unix_gid}", "webtemplate_delete -r {$guid}/{$vers}", SUEXEC_ACTION_IGNORE);
    CLEARBUSY();
    #
    # Fatal Error. Report to the user, even though there is not much he can
开发者ID:mahyuddin,项目名称:emulab-stable,代码行数:31,代码来源:template_show.php

示例3: defined

/**
 * @package JoomlaPack
 * @copyright Copyright (c)2006-2009 JoomlaPack Developers
 * @license GNU General Public License version 2, or later
 * @version $id$
 * @since 1.3
 */
// Protect from unauthorized access
defined('_JEXEC') or die('Restricted Access');
jpimport('helpers.sajax', true);
sajax_init();
sajax_force_page_ajax('backup');
sajax_export('start', 'tick', 'renderProgress', 'addWarning');
$null = null;
sajax_handle_client_request($null);
function start($description, $comment)
{
    jpimport('core.cube');
    JoomlapackCUBE::reset();
    $cube =& JoomlapackCUBE::getInstance();
    $cube->start($description, $comment);
    $cube->save();
    $array = $cube->getCUBEArray();
    return _processCUBE($array);
}
function tick()
{
    jpimport('core.cube');
    JoomlapackLogger::WriteLog(_JP_LOG_DEBUG, '--- Preparing to get instance');
    $cube =& JoomlapackCUBE::getInstance();
开发者ID:rlee1962,项目名称:diylegalcenter,代码行数:30,代码来源:default_raw.php

示例4: processAJAX

 function processAJAX()
 {
     $this->commonSAJAX();
     sajax_handle_client_request($this);
 }
开发者ID:reeleis,项目名称:ohiocitycycles,代码行数:5,代码来源:dbef.php


注:本文中的sajax_handle_client_request函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。