mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
[ticket/10328] Added a JSON class.
The JSON class adds a consistent way to send JSON to the client, making it perfect for AJAX (jQuery automatically parses it). PHPBB3-10328
This commit is contained in:
parent
94172b54dd
commit
dce38f44de
5 changed files with 63 additions and 9 deletions
|
@ -74,6 +74,7 @@ if (!empty($load_extensions) && function_exists('dl'))
|
|||
|
||||
// Include files
|
||||
require($phpbb_root_path . 'includes/class_loader.' . $phpEx);
|
||||
require($phpbb_root_path . 'includes/json.' . $phpEx);
|
||||
require($phpbb_root_path . 'includes/session.' . $phpEx);
|
||||
require($phpbb_root_path . 'includes/auth.' . $phpEx);
|
||||
|
||||
|
|
|
@ -258,8 +258,7 @@ class acp_forums
|
|||
|
||||
if ($request->is_ajax())
|
||||
{
|
||||
echo json_encode(array('success' => ($move_forum_name !== false)));
|
||||
exit;
|
||||
JSON::send(array('success' => ($move_forum_name !== false)));
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
|
@ -2713,7 +2713,7 @@ function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_bo
|
|||
if ($request->is_ajax())
|
||||
{
|
||||
$u_action .= '&confirm_uid=' . $user->data['user_id'] . '&sess=' . $user->session_id . '&sid=' . $user->session_id;
|
||||
echo json_encode(array(
|
||||
JSON::send(array(
|
||||
'MESSAGE_TITLE' => (!isset($user->lang[$title])) ? $user->lang['CONFIRM'] : $user->lang[$title],
|
||||
'MESSAGE_TEXT' => (!isset($user->lang[$title . '_CONFIRM'])) ? $title : $user->lang[$title . '_CONFIRM'],
|
||||
|
||||
|
@ -2721,7 +2721,6 @@ function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_bo
|
|||
'S_CONFIRM_ACTION' => str_replace('&', '&', $u_action), //inefficient, rewrite whole function
|
||||
'S_HIDDEN_FIELDS' => $hidden . $s_hidden_fields
|
||||
));
|
||||
exit;
|
||||
}
|
||||
|
||||
if (defined('IN_ADMIN') && isset($user->data['session_admin']) && $user->data['session_admin'])
|
||||
|
@ -3951,14 +3950,13 @@ function msg_handler($errno, $msg_text, $errfile, $errline)
|
|||
{
|
||||
global $refresh_data;
|
||||
|
||||
echo json_encode(array(
|
||||
JSON::send(array(
|
||||
'MESSAGE_TITLE' => $msg_title,
|
||||
'MESSAGE_TEXT' => $msg_text,
|
||||
'S_USER_WARNING' => ($errno == E_USER_WARNING) ? true : false,
|
||||
'S_USER_NOTICE' => ($errno == E_USER_NOTICE) ? true : false,
|
||||
'REFRESH_DATA' => (!empty($refresh_data)) ? $refresh_data : null
|
||||
));
|
||||
exit;
|
||||
}
|
||||
|
||||
// We do not want the cron script to be called on error messages
|
||||
|
|
59
phpBB/includes/json.php
Normal file
59
phpBB/includes/json.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* @package phpBB3
|
||||
* @version $Id$
|
||||
* @copyright (c) 2005 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* JSON class
|
||||
* @package phpBB3
|
||||
*/
|
||||
class JSON
|
||||
{
|
||||
private static $data = array();
|
||||
|
||||
/**
|
||||
* Send the data to the client and exit the script.
|
||||
*
|
||||
* @param array $data Any additional data to send.
|
||||
* @param bool $exit Will exit the script if true.
|
||||
*/
|
||||
public static function send($data = false, $exit = true)
|
||||
{
|
||||
if ($data)
|
||||
{
|
||||
self::add($data);
|
||||
}
|
||||
|
||||
header('Content-type: application/json');
|
||||
echo json_encode(self::$data);
|
||||
|
||||
if ($exit)
|
||||
{
|
||||
garbage_collection();
|
||||
exit_handler();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves some data to be written when JSON::send() is called.
|
||||
*
|
||||
* @param array $data Data to save to be sent.
|
||||
*/
|
||||
public static function add($data)
|
||||
{
|
||||
self::$data = array_merge(self::$data, $data);
|
||||
}
|
||||
}
|
|
@ -216,8 +216,6 @@ phpbb.ajaxify = function(options, refresh, callback) {
|
|||
|
||||
function return_handler(res)
|
||||
{
|
||||
res = JSON.parse(res);
|
||||
|
||||
if (typeof res.S_CONFIRM_ACTION === 'undefined')
|
||||
{
|
||||
/**
|
||||
|
@ -243,7 +241,6 @@ phpbb.ajaxify = function(options, refresh, callback) {
|
|||
path = res.S_CONFIRM_ACTION;
|
||||
phpbb.loading_alert();
|
||||
$.post(path, data + '&confirm=' + res.YES_VALUE, function(res) {
|
||||
res = JSON.parse(res);
|
||||
var alert = phpbb.alert(res.MESSAGE_TITLE, res.MESSAGE_TEXT);
|
||||
callback = phpbb.ajax_callbacks[callback];
|
||||
if (typeof callback === 'function')
|
||||
|
|
Loading…
Add table
Reference in a new issue