mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 00:14:57 +02:00
commit for Lars:
1) ajax proposal: proof of concept using xajax in felamimail to work without page reloads 2) also implemented IMAP ACL for cyrus and php5 (still needs some work)
This commit is contained in:
10
phpgwapi/js/dhtmlxtree/samples/xml.php
Normal file
10
phpgwapi/js/dhtmlxtree/samples/xml.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php header("Content-type:text/xml"); print("<?xml version=\"1.0\"?>");
|
||||
if (isset($_GET["id"]))
|
||||
$url_var=$_GET["id"];
|
||||
else
|
||||
$url_var=0;
|
||||
print("<tree id='".$url_var."'>");
|
||||
for ($inta=0; $inta<4; $inta++)
|
||||
print("<item child='1' id='".$url_var."_".$inta."' text='Item ".$url_var."-".$inta."'></item>");
|
||||
print("</tree>");
|
||||
?>
|
Reference in New Issue
Block a user