33 $this->db = (is_null(
$db))
48 public function hasEnded(array $survey_ids) : array
53 "SELECT survey_id, enddate FROM svy_svy " .
54 " WHERE " .
$db->in(
"survey_id", $survey_ids,
false,
"integer"),
59 while ($rec =
$db->fetchAssoc($set)) {
60 $has_ended[(int) $rec[
"survey_id"]] = !($rec[
"enddate"] == 0 || $this->
toUnixTS($rec[
"enddate"]) > time());
76 "SELECT survey_id, obj_fi FROM svy_svy " .
77 " WHERE " .
$db->in(
"survey_id", $survey_ids,
false,
"integer"),
82 while ($rec =
$db->fetchAssoc($set)) {
83 $obj_ids[(int) $rec[
"survey_id"]] = (
int) $rec[
"obj_fi"];
97 if (preg_match(
"/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/", $date, $matches)) {
98 return (
int) mktime($matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1]);
115 "SELECT startdate, enddate, anonymize, survey_id FROM svy_svy " .
116 " WHERE " .
$db->in(
"survey_id", $survey_ids,
false,
"integer"),
121 while ($rec =
$db->fetchAssoc($set)) {
122 $settings[(int) $rec[
"survey_id"]] = $this->set_factory->accessSettings(
123 $this->toUnixTS($rec[
"startdate"]),
125 in_array($rec[
"anonymize"], [
"1",
"3"])
hasEnded(array $survey_ids)
Check if surveys have ended.
getAccessSettings(array $survey_ids)
Get access settings.
__construct(\ilDBInterface $db=null, SettingsFactory $set_factory=null)
Constructor.
getObjIdsForSurveyIds(array $survey_ids)
Check if surveys have ended.
Survey settings db repository.
toUnixTS($date)
Unix time from survey date.