ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ToolFactory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
31{
38 public function tool(IdentificationInterface $identification): Tool
39 {
40 return new Tool($identification);
41 }
42
47 public function treeTool(IdentificationInterface $identification): TreeTool
48 {
49 return new TreeTool($identification);
50 }
51}
Class ToolFactory This factory provides you all available types for MainMenu GlobalScreen Tools.
Definition: ToolFactory.php:31
tool(IdentificationInterface $identification)
Returns you a Tool which can contain special features in s context.
Definition: ToolFactory.php:38
treeTool(IdentificationInterface $identification)
Definition: ToolFactory.php:47