sqlManager = new \database\PssSqlManager(); parent::__construct($headers); } /** * Default-DeConstructor */ public function __destruct() { parent::__destruct(); } /** * Method start a pis-query * @param array $queryArgs * @return query result as xml */ public function sendPssQuery($queryArgs) { $pidList = \utiliy\ArrayManager::removeEmptyItmes($queryArgs[self::$keyPidList]); if (array_key_exists(self::$keySNameList, $queryArgs)) { $sNameList = \utiliy\ArrayManager::removeEmptyItmes($queryArgs[self::$keySNameList]); } else { $sNameList = array(); } if (count($pidList) < self::$maxPid) { $result = $this->sqlManager->sendPssQuery($pidList, $sNameList); return $this->serialManager->arrayToPss($result); } return NULL; } } ?>