khanat-code-old/code/ryzom/tools/server/admin/functions_tool_applications.php
kervala 47ccfe279a Changed: Don't use anymore the current SDK in registry (very unreliable)
Changed: Use the Windows SDK installed with VC++ or the most recent compatible one
2013-09-27 10:52:44 +02:00

21 lines
No EOL
401 B
PHP

<?php
function tool_applications_menu_get_list()
{
global $db;
$data = null;
$sql = "SELECT * FROM ". NELDB_APPLICATION_TABLE ." WHERE application_visible=1 AND application_uri<>'' ORDER BY application_order ASC";
if ($result = $db->sql_query($sql))
{
if ($db->sql_numrows($result))
{
$data = $db->sql_fetchrowset($result);
}
}
return $data;
}
?>