_db->select(); $select->from($this->_getPair(), ['id', 'title']); $select->where('title LIKE ?', $term . '%'); $select->order('title'); $select->limit(50); if (($list = $this->_db->fetchAll($select))) { foreach ($list as $row) { $states[] = ['value' => $row['id'], 'title' => $row['title']]; } } return $states; } }