ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.UserImageExporter.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Notes\Export;
20 
26 {
27  protected \ilDBInterface $db;
28 
29  public function __construct()
30  {
31  global $DIC;
32 
33  $this->db = $DIC->database();
34  }
35 
36  public function exportUserImagesForRepObjId(
37  string $export_dir,
38  int $rep_obj_id
39  ): void {
40  $db = $this->db;
41  $set = $db->queryF(
42  "SELECT DISTINCT author FROM note " .
43  " WHERE rep_obj_id = %s " .
44  " AND type = %s ",
45  ["integer", "integer"],
46  [$rep_obj_id, 2]
47  );
48  $user_ids = [];
49  while ($rec = $db->fetchAssoc($set)) {
50  $user_ids[] = (int) $rec["author"];
51  }
52  $this->exportUserImages($export_dir, $user_ids);
53  }
54 
55  public function exportUserImages(string $export_dir, array $user_ids): void
56  {
57  $user_export = new \ILIAS\User\Export\UserHtmlExport();
58  $user_export->exportUserImages($export_dir, $user_ids);
59  }
60 }
Helper UI class for notes/comments handling in (HTML) exports.
exportUserImages(string $export_dir, array $user_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
queryF(string $query, array $types, array $values)
exportUserImagesForRepObjId(string $export_dir, int $rep_obj_id)