26 $this->db = $DIC->database();
33 "SELECT act_est_reading_time FROM content_object " .
38 if ($rec =
$db->fetchAssoc($set)) {
39 return (
bool) $rec[
"act_est_reading_time"];
44 public function activate(
int $lm_id,
bool $activated): void
50 "act_est_reading_time" => [
"integer", $activated]
53 "id" => [
"integer", $lm_id]
64 "est_reading_time" => [
"integer", $reading_time]
67 "id" => [
"integer", $lm_id]
74 if (!isset(self::$times[$lm_id])) {
77 return self::$times[$lm_id];
84 "SELECT id, act_est_reading_time, est_reading_time FROM content_object " .
85 " WHERE " .
$db->in(
"id", $lm_ids,
false,
"integer"),
89 foreach ($lm_ids as $lm_id) {
90 self::$times[(
int) $lm_id] = null;
92 while ($rec =
$db->fetchAssoc($set)) {
93 if ($rec[
"act_est_reading_time"]) {
94 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)
__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...