ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilAppointmentCourseFileHandler Class Reference

Course appointment file handler. More...

+ Inheritance diagram for ilAppointmentCourseFileHandler:
+ Collaboration diagram for ilAppointmentCourseFileHandler:

Public Member Functions

 getFiles ()
 
- Public Member Functions inherited from ilAppointmentBaseFileHandler
 __construct (array $a_appointment)
 
 getCatId (int $a_entry_id)
 
 getCatInfo ()
 

Additional Inherited Members

- Protected Attributes inherited from ilAppointmentBaseFileHandler
array $appointment
 
ilLogger $logger
 
ilAccessHandler $access
 
ilRbacSystem $rbacsystem
 
ilObjUser $user
 

Detailed Description

Course appointment file handler.

Author
Alex Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 28 of file class.ilAppointmentCourseFileHandler.php.

Member Function Documentation

◆ getFiles()

ilAppointmentCourseFileHandler::getFiles ( )

Implements ilAppointmentFileHandler.

Definition at line 33 of file class.ilAppointmentCourseFileHandler.php.

References ilObject\_getAllReferences(), ilCourseFile\_readFilesByCourse(), ILIAS\Repository\access(), and ilAppointmentBaseFileHandler\getCatInfo().

33  : array
34  {
35  $cat_info = $this->getCatInfo();
36 
37  //checking permissions of the parent object.
38  // get course ref id (this is possible, since courses only have one ref id)
39  $refs = ilObject::_getAllReferences($cat_info['obj_id']);
40  $crs_ref_id = current($refs);
41 
42  $files = [];
43  if ($this->access->checkAccessOfUser($this->user->getId(), "read", "", $crs_ref_id)) {
44  $course_files = ilCourseFile::_readFilesByCourse($cat_info['obj_id']);
45  foreach ($course_files as $course_file) {
46  $file_property = new ilFileProperty();
47  $file_property->setAbsolutePath($course_file->getAbsolutePath());
48  $file_property->setFileName($course_file->getFileName());
49  $files[] = $file_property;
50  }
51  }
52  return $files;
53  }
static _getAllReferences(int $id)
get all reference ids for object ID
static _readFilesByCourse(int $a_course_id)
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: