ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileObjectRBACDatabase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
23 
28 {
29  #[\Override]
30  public function getPreconditions(Environment $environment): array
31  {
32  return array_merge(
33  parent::getPreconditions($environment),
34  [
36  Permissions::EDIT_CONTENT->value,
37  "Edit File",
38  "object",
39  5990,
40  ["file"]
41  ),
43  Permissions::VIEW_CONTENT->value,
44  "View Content in external Editor",
45  "object",
46  2001,
47  ["file"]
48  ),
50  "file",
51  Permissions::READ->value,
52  Permissions::VIEW_CONTENT->value
53  ),
54 
55  ]
56  );
57  }
58 
59 }
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27