ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ToolFactory.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
4 
6 
15 {
16 
26  public function tool(IdentificationInterface $identification) : Tool
27  {
28  return new Tool($identification);
29  }
30 
31 
37  public function treeTool(IdentificationInterface $identification) : TreeTool
38  {
39  return new TreeTool($identification);
40  }
41 }
tool(IdentificationInterface $identification)
Returns you a Tool which can contain special features in s context.
Definition: ToolFactory.php:26
treeTool(IdentificationInterface $identification)
Definition: ToolFactory.php:37