mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
update categories class to count items
This commit is contained in:
parent
3a63d04278
commit
3f06a8752b
@ -45,6 +45,8 @@
|
||||
|
||||
global $phpgw, $phpgw_info;
|
||||
|
||||
$this->db2 = $this->db;
|
||||
|
||||
$filter = $this->filter($type);
|
||||
if (!$sort) { $sort = "ASC"; }
|
||||
|
||||
@ -52,18 +54,18 @@
|
||||
else { $ordermethod = " order by cat_parent asc"; }
|
||||
|
||||
if ($query) {
|
||||
$this->db->query("select * from phpgw_categories where cat_appname='" . $this->app_name . "' and "
|
||||
. "(cat_name like '%$query%' or cat_description like '%$query%') $filter $ordermethod" . " "
|
||||
. $this->db->limit($start,$limit),__LINE__,__FILE__);
|
||||
$this->total_records = $this->db->num_rows();
|
||||
$sql = "select * from phpgw_categories where cat_appname='" . $this->app_name . "' and "
|
||||
. "(cat_name like '%$query%' or cat_description like '%$query%') $filter $ordermethod";
|
||||
}
|
||||
else {
|
||||
$this->db->query("select * from phpgw_categories where cat_appname='" . $this->app_name . "'"
|
||||
. "$filter $ordermethod" . " "
|
||||
. $this->db->limit($start,$limit),__LINE__,__FILE__);
|
||||
$this->total_records = $this->db->num_rows();
|
||||
$sql = "select * from phpgw_categories where cat_appname='" . $this->app_name . "'"
|
||||
. "$filter $ordermethod";
|
||||
}
|
||||
|
||||
$this->db2->query($sql,__LINE__,__FILE__);
|
||||
$this->total_records = $this->db2->num_rows();
|
||||
$this->db->query($sql. " " . $this->db->limit($start,$limit),__LINE__,__FILE__);
|
||||
|
||||
$i = 0;
|
||||
while ($this->db->next_record()) {
|
||||
$cats[$i]['id'] = $this->db->f('cat_id');
|
||||
|
Loading…
Reference in New Issue
Block a user