mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-06 07:19:05 +00:00
21 lines
401 B
PHP
21 lines
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;
|
||
|
}
|
||
|
|
||
|
?>
|