48 $queryParams = array();
51 foreach ($map as $queryKey => $checkKey)
55 if ($queryKey ===
't')
57 $dateTime = Main\Type\DateTime::createFromTimestamp($data[$checkKey]);
58 $queryParams[] = $queryKey.
'='.$dateTime->format(
'Ymd\THis');
60 else if ($queryKey ===
'n')
62 $calculatedSignMap = $this->getCalculatedSignMap();
63 $queryParams[] = $queryKey.
'='.$calculatedSignMap[$data[$checkKey]];
67 $queryParams[] = $queryKey.
'='.$data[$checkKey];
72 if (empty($queryParams))
76 return $url.implode(
'&', $queryParams);