where('`People`.`show` = ?', 'y'); return $select; } protected function _prepareList(&$list) { $data = array(); foreach ($list as $item) { if (!array_key_exists($item['groupId'], $data)) { $data[$item['groupId']] = array('id' => $item['groupId'], 'title' => $item['group']); } $data[$item['groupId']]['peoples'][] = $item; } $list = $data; return $this; } }