Вход Регистрация
Файл: qa-include/qa-ajax.php
Строк: 89
<?php

/*
    Question2Answer (c) Gideon Greenspan

    http://www.question2answer.org/

    
    File: qa-include/qa-ajax.php
    Version: See define()s at top of qa-include/qa-base.php
    Description: Front line of response to Ajax requests, routing as appropriate


    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    More about this license: http://www.question2answer.org/license.php
*/

//    Output this header as early as possible

    
header('Content-Type: text/plain; charset=utf-8');


//    Ensure no PHP errors are shown in the Ajax response

    
@ini_set('display_errors'0);


//    Load the Q2A base file which sets up a bunch of crucial functions

    
require 'qa-base.php';

    
qa_report_process_stage('init_ajax');
        

//    Get general Ajax parameters from the POST payload, and clear $_GET

    
qa_set_request(qa_post_text('qa_request'), qa_post_text('qa_root'));

    
$_GET=array(); // for qa_self_html()
    

//    Database failure handler

    
function qa_ajax_db_fail_handler()
    {
        echo 
"QA_AJAX_RESPONSEn0nA database error occurred.";
        
qa_exit('error');
    }


//    Perform the appropriate Ajax operation

    
$routing=array(
        
'notice' => 'qa-ajax-notice.php',
        
'favorite' => 'qa-ajax-favorite.php',
        
'vote' => 'qa-ajax-vote.php',
        
'recalc' => 'qa-ajax-recalc.php',
        
'mailing' => 'qa-ajax-mailing.php',
        
'version' => 'qa-ajax-version.php',
        
'category' => 'qa-ajax-category.php',
        
'asktitle' => 'qa-ajax-asktitle.php',
        
'answer' => 'qa-ajax-answer.php',
        
'comment' => 'qa-ajax-comment.php',
        
'click_a' => 'qa-ajax-click-answer.php',
        
'click_c' => 'qa-ajax-click-comment.php',
        
'click_admin' => 'qa-ajax-click-admin.php',
        
'show_cs' => 'qa-ajax-show-comments.php',
    );
    
    
$operation=qa_post_text('qa_operation');
    
    if (isset(
$routing[$operation])) {
        
qa_db_connect('qa_ajax_db_fail_handler');

        require 
QA_INCLUDE_DIR.$routing[$operation];
        
        
qa_db_disconnect();
    }


/*
    Omit PHP closing tag to help avoid accidental output
*/
Онлайн: 0
Реклама