HEX
Server: Apache/2.4.6 (CentOS) mpm-itk/2.4.7-04 mod_fcgid/2.3.9 PHP/5.4.16
System: Linux dvm.vladweb.ru 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: region-gk.ru (1016)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //home/bk/efi/eficenter.ru/modules/forms/tree_forms.php
<?

function get_categories_forms_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 . "_forms_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=list&category=" . $v["id"] . "]]></userdata></item>";
		}
	}

	$xml .= "<userdata name=\"path\">name=" . $iName . "</userdata>";
	$xml .= "</item>";

	return $xml;
}
$list_modules_xml .= get_categories_forms_xml( $db->f('name'), $db->f('title') );

?>