File: //home/bk/efi/eficenter.ru/modules/news/tree_news.php
<?
function get_categories_xml($iName, $title) {
global $server, $lang;
if( empty($iName) ) return false;
$xml = "<item text=\"". htmlspecialchars($title) ."\" id=\"". (rand(1, 1000)) . "_" . $iName ."\" im0=\"".$iName.".gif\" im1=\"".$iName.".gif\" im2=\"".$iName.".gif\" >";
$zp = mysql_query("SELECT `id`,`title` FROM `".$lang."_news_categories`");
if(is_resource($zp)) if(mysql_num_rows($zp)>0)
while($v = mysql_fetch_array($zp)) {
if($v["title"] != "") { ////admin.php?name=article
$xml .= "<item text=\"". htmlspecialchars($v["title"]) ."\" id=\"". $iName ."_". $v["id"] ."\" im0=\"".$iName.".gif\" im1=\"".$iName.".gif\" im2=\"".$iName.".gif\">";
$xml .= "<userdata name=\"path\"><![CDATA[name=". $iName ."&cmd=shownews&category=". $v["id"] ."]]></userdata></item>"; }
}
$xml .= "<userdata name=\"path\">name=".$iName."</userdata>";
$xml .= "</item>";
return $xml;
}
$list_modules_xml .= get_categories_xml($db->f ('name'), $db->f ('title'));
/* http://new.vladmercedes.ru/admin.php?lang=ru&name=news&fpath=show&fpath=show&cmd=shownews&category=32*/
?>