convert2Sql($condition, array($record, $record)); $pos = stripos($listQuery, 'where'); if ($pos) { $split = preg_split('/where/i', $listQuery); $overRideQuery = $split[0].' WHERE '.$split[1].' AND '.$condition; } else { $overRideQuery = $listQuery.' WHERE '.$condition; } return $overRideQuery; } } /** * Function to check whether the module is summary view supported * @return - true/false */ public function isSummaryViewSupported() { return false; } /* * Function to get supported utility actions for a module */ public function getUtilityActionsNames() { return array('Import', 'Export', 'DuplicatesHandling'); } }