ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTaxonomyTree.php
Go to the documentation of this file.
1 <?php
2 
23 class ilTaxonomyTree extends ilTree
24 {
25  public function __construct(int $a_id)
26  {
27  parent::__construct($a_id);
28  $this->setTreeTablePK("tax_tree_id");
29  $this->setTableNames('tax_tree', 'tax_node');
30  }
31 }
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTableNames(string $a_table_tree, string $a_table_obj_data, string $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be &#39;obj_id&#39; You may use...
__construct(Container $dic, ilPlugin $plugin)