ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ToolFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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 }
tool(IdentificationInterface $identification)
Returns you a Tool which can contain special features in s context.
Definition: ToolFactory.php:38
Class ToolFactory This factory provides you all available types for MainMenu GlobalScreen Tools...
Definition: ToolFactory.php:30
treeTool(IdentificationInterface $identification)
Definition: ToolFactory.php:47