blob: bda4e916fa480122cbf24cb41465e852d19380e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/*
* Created on 29/04/2006
*/
// See TActivePageAdapter::renderResponse()
//TODO: How to render the response, it will contain 3 pieces of data
// 1) The arbituary data returned to the client-side callback handler
// 2) client-side function call statements
// 3) Content body, which may need to be partitioned
class TCallbackResponse extends THttpResponse
{
const CALLBACK_DATA_HEADER = 'X-PRADO-DATA';
const CALLBACK_ACTION_HEADER = 'X-PRADO-ACTIONS';
}
?>
|