40 $this->db = $DIC->database();
47 "SELECT act_est_reading_time FROM content_object " .
52 if ($rec =
$db->fetchAssoc($set)) {
53 return (
bool) $rec[
"act_est_reading_time"];
58 public function activate(
int $lm_id,
bool $activated): void
64 "act_est_reading_time" => [
"integer", $activated]
67 "id" => [
"integer", $lm_id]
78 "est_reading_time" => [
"integer", $reading_time]
81 "id" => [
"integer", $lm_id]
88 if (!isset(self::$times[$lm_id])) {
91 return self::$times[$lm_id];
98 "SELECT id, act_est_reading_time, est_reading_time FROM content_object " .
99 " WHERE " .
$db->in(
"id", $lm_ids,
false,
"integer"),
103 foreach ($lm_ids as $lm_id) {
104 self::$times[(
int) $lm_id] =
null;
106 while ($rec =
$db->fetchAssoc($set)) {
107 if ($rec[
"act_est_reading_time"]) {
108 self::$times[(
int) $rec[
"id"]] = (
int) $rec[
"est_reading_time"];
getReadingTime(int $lm_id)
activate(int $lm_id, bool $activated)
saveReadingTime(int $lm_id, int $reading_time)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct()
Constructor setup ILIAS global object public.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...