Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
00021
00022 require_once 'class_tag.php';
00023 ob_start();
00024 if ($_GET['clear']==1) {
00025
00026 echo Tag::add_clear_button($_GET['pref']);
00027 }
00028 $tag=new Tag($cn,$_GET['id']);
00029 $tag->update_search_cell($_GET['pref']);
00030
00031 $response= ob_get_clean();
00032 $html=escape_xml($response);
00033 header('Content-type: text/xml; charset=UTF-8');
00034 echo <<<EOF
00035 <?xml version="1.0" encoding="UTF-8"?>
00036 <data>
00037 <ctl></ctl>
00038 <html>$html</html>
00039 </data>
00040 EOF;
00041 exit();
00042
00043
00044 ?>
00045