mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
update function id2name to return also main,app,owner
This commit is contained in:
parent
c3d72d5af5
commit
e93eb90d38
@ -423,15 +423,32 @@
|
||||
return $this->db->f('cat_id');
|
||||
}
|
||||
|
||||
function id2name($cat_id)
|
||||
function id2name($cat_id, $item = 'name')
|
||||
{
|
||||
$this->db->query("select cat_name from phpgw_categories where cat_id='"
|
||||
if ($item == 'main')
|
||||
{
|
||||
$value = 'cat_main';
|
||||
}
|
||||
elseif ($item == 'owner')
|
||||
{
|
||||
$value = 'cat_owner';
|
||||
}
|
||||
elseif ($item == 'app')
|
||||
{
|
||||
$value = 'cat_appname';
|
||||
}
|
||||
else
|
||||
{
|
||||
$value = 'cat_name';
|
||||
}
|
||||
|
||||
$this->db->query("select $value from phpgw_categories where cat_id='"
|
||||
. "$cat_id'",__LINE__,__FILE__);
|
||||
$this->db->next_record();
|
||||
|
||||
if ($this->db->f('cat_name'))
|
||||
if ($this->db->f($value))
|
||||
{
|
||||
return $this->db->f('cat_name');
|
||||
return $this->db->f($value);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -490,16 +507,5 @@
|
||||
return False;
|
||||
}
|
||||
}
|
||||
|
||||
function return_main($cat_id = '')
|
||||
{
|
||||
$this->db->query("select cat_main from phpgw_categories where cat_id='$cat_id'",__LINE__,__FILE__);
|
||||
|
||||
$this->db->next_record();
|
||||
|
||||
$cat_main = $this->db->f('cat_main');
|
||||
|
||||
return $cat_main;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user