ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ToolFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
23 
30 {
37  public function tool(IdentificationInterface $identification): Tool
38  {
39  return new Tool($identification);
40  }
41 
46  public function treeTool(IdentificationInterface $identification): TreeTool
47  {
48  return new TreeTool($identification);
49  }
50 }
tool(IdentificationInterface $identification)
Returns you a Tool which can contain special features in s context.
Definition: ToolFactory.php:37
Class ToolFactory This factory provides you all available types for MainMenu GlobalScreen Tools...
Definition: ToolFactory.php:29
treeTool(IdentificationInterface $identification)
Definition: ToolFactory.php:46