Fix checkRpItemsPosition
[ryzomcore.git] / web / public_php / admin / functions_tool_applications.php
blob8f0135868a4c89f2791b662e21b49a8e2212089d
1 <?php
3 function tool_applications_menu_get_list()
5 global $db;
7 $data = null;
9 $sql = "SELECT * FROM ". NELDB_APPLICATION_TABLE ." WHERE application_visible=1 AND application_uri<>'' ORDER BY application_order ASC";
10 if ($result = $db->sql_query($sql))
12 if ($db->sql_numrows($result))
14 $data = $db->sql_fetchrowset($result);
18 return $data;