blob: c1b8ccfa3569a6c19153a0961c5a004279500840 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/* -----------------------------------------------------------------------------
class name: ajax
class version: 2.0
date: 2008-07-20
------------------------------------------------------------------------------
author: grum at grum.dnsalias.com
<< May the Little SpaceFrog be with you >>
------------------------------------------------------------------------------
this classes provides base functions to add ajax.js file into html page ;
just instanciate an ajax object, and call return_result
$ajax_content_to_be_returned = "...............";
$ajax = new ajax();
$ajax->return_result($ajax_content_to_be_returned);
- constructor ajax()
- function return_result($str)
---------------------------------------------------------------------- */
class ajax
{
function ajax()
{
add_event_handler('loc_end_page_header', array(&$this, 'load_JS'));
}
function load_JS()
{
global $template;
$name='plugins/'.basename(dirname(__FILE__)).'/ajax.js';
$template->append('head_elements', '<script src="'.$name.'" type="text/javascript"></script>');
}
function return_result($str)
{
//$chars=get_html_translation_table(HTML_ENTITIES, ENT_NOQUOTES);
$chars['<']='<';
$chars['>']='>';
$chars['&']='&';
exit(strtr($str, $chars));
}
} //class
/*
it's better to make $ajax instance into the plugin object, otherwise an object
made here cannot be acceeded..
*/
//$ajax=new ajax();
?>
|