ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
MetadataHandlerInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function getEditForm(
26 string $type,
27 int $id,
28 string $subtype,
29 int $sub_id,
30 string $form_action,
31 string $submit_command,
32 string $submit_label
34
35 public function getDisabledEditForm(
36 string $type,
37 int $id,
38 string $subtype,
39 int $sub_id
41
42 public function copyValues(
43 string $from_type,
44 int $from_id,
45 string $to_type,
46 int $to_id,
47 string $subtype
48 ): void;
49
50 public function attachSelectionToForm(
51 string $type,
52 int $id,
53 string $subtype,
54 int $sub_id,
56 ): void;
57
58 public function saveSelectionFromForm(
59 string $type,
60 int $id,
61 string $subtype,
62 int $sub_id,
64 ): void;
65}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
This class represents a property form user interface.
attachSelectionToForm(string $type, int $id, string $subtype, int $sub_id, \ilPropertyFormGUI $form)
saveSelectionFromForm(string $type, int $id, string $subtype, int $sub_id, \ilPropertyFormGUI $form)
getEditForm(string $type, int $id, string $subtype, int $sub_id, string $form_action, string $submit_command, string $submit_label)
copyValues(string $from_type, int $from_id, string $to_type, int $to_id, string $subtype)
getDisabledEditForm(string $type, int $id, string $subtype, int $sub_id)