_db->select(); $select->from($this->_getPair('GalleryImage', 'gi'), 'COUNT(`gi`.`id`)'); $select->where('`gi`.`galleryId` = `' . $this->_tableShortAlias . '`.`id`'); if (null !== $visible) { $select->where('`gi`.`enabled` = ?', ($visible) ? 'y' : 'n'); } return $select; } }