mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
allow to specify multiple cat_id's
This commit is contained in:
parent
e467b48fea
commit
76c83eb2a9
@ -156,7 +156,7 @@ class Categories
|
||||
*/
|
||||
function return_all_children($cat_id)
|
||||
{
|
||||
$all_children = (array) $cat_id;
|
||||
$all_children = array_map('intval', (array)$cat_id);
|
||||
|
||||
$children = $this->return_array('subs',0,False,'','','',True,$cat_id,-1,'id');
|
||||
if (is_array($children) && count($children))
|
||||
|
@ -118,7 +118,7 @@ class Sql extends Api\Storage
|
||||
if ($advanced_search || (isset($param['wildcard']) && !empty($param['wildcard']))) $wildcard = ($param['wildcard']?$param['wildcard']:'');
|
||||
|
||||
// fix cat_id filter to search in comma-separated multiple cats and return subcats
|
||||
if ((int)$filter['cat_id'])
|
||||
if ($filter['cat_id'])
|
||||
{
|
||||
$filter[] = $this->_cat_filter($filter['cat_id']);
|
||||
unset($filter['cat_id']);
|
||||
@ -285,7 +285,7 @@ class Sql extends Api\Storage
|
||||
$filter['cat_id'] = substr($filter['cat_id'],1);
|
||||
$not = 'NOT';
|
||||
}
|
||||
$filter[] = $this->_cat_filter((int)$filter['cat_id'],$not);
|
||||
$filter[] = $this->_cat_filter($filter['cat_id'],$not);
|
||||
unset($filter['cat_id']);
|
||||
}
|
||||
|
||||
@ -430,7 +430,7 @@ class Sql extends Api\Storage
|
||||
* fix cat_id filter to search in comma-separated multiple cats and return subcats
|
||||
*
|
||||
* @internal
|
||||
* @param int $cat_id
|
||||
* @param int|array $cat_id
|
||||
* @return string sql to filter by given cat
|
||||
*/
|
||||
function _cat_filter($cat_id, $not='')
|
||||
@ -439,7 +439,7 @@ class Sql extends Api\Storage
|
||||
{
|
||||
$GLOBALS['egw']->categories = new Api\Categories;
|
||||
}
|
||||
foreach($GLOBALS['egw']->categories->return_all_children((int)$cat_id) as $cat)
|
||||
foreach($GLOBALS['egw']->categories->return_all_children($cat_id) as $cat)
|
||||
{
|
||||
$cat_filter[] = $this->db->concat("','",cat_id,"','")." $not LIKE '%,$cat,%'";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user