ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
31interface Factory
32{
60 public function standard(
61 string $id,
62 string $title,
63 ?Image $icon = null,
64 string $description = ''
65 ): Standard;
66
97 public function keyValue(
98 string $id,
99 string $key,
100 string $value
101 ): KeyValue;
102}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
standard(string $id, string $title, ?Image $icon=null, string $description='')
keyValue(string $id, string $key, string $value)