mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
update function return_lingle to also return the app_name plus function id2name to only return -- if =='name'
This commit is contained in:
parent
0d4b201c68
commit
1265474bfb
@ -191,6 +191,7 @@
|
||||
$cats[0]['id'] = $this->db->f('cat_id');
|
||||
$cats[0]['owner'] = $this->db->f('cat_owner');
|
||||
$cats[0]['access'] = $this->db->f('cat_access');
|
||||
$cats[0]['app_name'] = $this->db->f('cat_appname');
|
||||
$cats[0]['main'] = $this->db->f('cat_main');
|
||||
$cats[0]['level'] = $this->db->f('cat_level');
|
||||
$cats[0]['parent'] = $this->db->f('cat_parent');
|
||||
@ -427,22 +428,19 @@
|
||||
|
||||
function id2name($cat_id, $item = 'name')
|
||||
{
|
||||
if ($item == 'main')
|
||||
if ($item == 'name')
|
||||
{
|
||||
$value = 'cat_main';
|
||||
$value = 'cat_name';
|
||||
}
|
||||
elseif ($item == 'owner')
|
||||
{
|
||||
$value = 'cat_owner';
|
||||
}
|
||||
elseif ($item == 'app')
|
||||
elseif ($item == 'main')
|
||||
{
|
||||
$value = 'cat_appname';
|
||||
}
|
||||
else
|
||||
{
|
||||
$value = 'cat_name';
|
||||
$value = 'cat_main';
|
||||
}
|
||||
endif;
|
||||
|
||||
$this->db->query("select $value from phpgw_categories where cat_id='"
|
||||
. "$cat_id'",__LINE__,__FILE__);
|
||||
@ -454,7 +452,10 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
return '--';
|
||||
if ($item == 'name')
|
||||
{
|
||||
return '--';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user