ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Survey\InternalRepoService Class Reference

Survey internal data service. More...

+ Collaboration diagram for ILIAS\Survey\InternalRepoService:

Public Member Functions

 __construct (InternalDataService $data, \ilDBInterface $db)
 
 execution ()
 
 participants ()
 
 code ()
 
 settings ()
 
 edit ()
 
 evaluation ()
 
 sequence ()
 

Protected Attributes

InternalDataService $data
 
ilDBInterface $db
 

Detailed Description

Survey internal data service.

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

Definition at line 31 of file class.InternalRepoService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Survey\InternalRepoService::__construct ( InternalDataService  $data,
\ilDBInterface  $db 
)

Definition at line 36 of file class.InternalRepoService.php.

References ILIAS\Survey\InternalRepoService\$data, and ILIAS\Survey\InternalRepoService\$db.

37  {
38  $this->data = $data;
39  $this->db = $db;
40  }

Member Function Documentation

◆ code()

ILIAS\Survey\InternalRepoService::code ( )

Definition at line 58 of file class.InternalRepoService.php.

58  : Code\CodeDBRepo
59  {
60  return new Code\CodeDBRepo(
61  $this->data,
62  $this->db
63  );
64  }

◆ edit()

ILIAS\Survey\InternalRepoService::edit ( )

Definition at line 74 of file class.InternalRepoService.php.

Referenced by ILIAS\Survey\Editing\EditManager\__construct().

74  : Editing\EditSessionRepo
75  {
76  return new Editing\EditSessionRepo();
77  }
+ Here is the caller graph for this function:

◆ evaluation()

ILIAS\Survey\InternalRepoService::evaluation ( )

Definition at line 79 of file class.InternalRepoService.php.

79  : Evaluation\EvaluationSessionRepo
80  {
81  return new Evaluation\EvaluationSessionRepo();
82  }

◆ execution()

ILIAS\Survey\InternalRepoService::execution ( )

Definition at line 42 of file class.InternalRepoService.php.

Referenced by ILIAS\Survey\Survey360\Survey360Manager\__construct(), ILIAS\Survey\Participants\InvitationsManager\__construct(), and ILIAS\Survey\Execution\RunManager\__construct().

42  : Execution\RepoService
43  {
44  return new Execution\RepoService(
45  $this->data,
46  $this->db
47  );
48  }
+ Here is the caller graph for this function:

◆ participants()

ILIAS\Survey\InternalRepoService::participants ( )

Definition at line 50 of file class.InternalRepoService.php.

Referenced by ILIAS\Survey\Participants\InvitationsManager\__construct().

50  : Participants\RepoService
51  {
52  return new Participants\RepoService(
53  $this->data,
54  $this->db
55  );
56  }
+ Here is the caller graph for this function:

◆ sequence()

ILIAS\Survey\InternalRepoService::sequence ( )

Definition at line 84 of file class.InternalRepoService.php.

Referenced by ILIAS\Survey\Sequence\SequenceManager\__construct().

84  : Sequence\SequenceDBRepository
85  {
86  return new Sequence\SequenceDBRepository(
87  $this->data,
88  $this->db
89  );
90  }
+ Here is the caller graph for this function:

◆ settings()

ILIAS\Survey\InternalRepoService::settings ( )

Definition at line 66 of file class.InternalRepoService.php.

Referenced by ILIAS\Survey\Survey360\Survey360Manager\__construct(), and ILIAS\Survey\Participants\InvitationsManager\__construct().

66  : Settings\SettingsDBRepository
67  {
68  return new Settings\SettingsDBRepository(
69  $this->data,
70  $this->db
71  );
72  }
+ Here is the caller graph for this function:

Field Documentation

◆ $data

InternalDataService ILIAS\Survey\InternalRepoService::$data
protected

◆ $db

ilDBInterface ILIAS\Survey\InternalRepoService::$db
protected

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