25 public function __construct($a_id = 0, $a_call_by_reference =
true)
29 $this->tree = $DIC->repositoryTree();
30 $this->db = $DIC->database();
35 public function delete():
bool 41 protected function getPath(
int $a_ref_id): array
61 $sql =
"SELECT oref.ref_id, od.obj_id, od.type obj_type, od.title obj_title," .
62 " tu.tax_id, od2.title tax_title, cs.value tax_status" .
63 " FROM object_data od" .
64 " JOIN object_reference oref ON (od.obj_id = oref.obj_id)" .
65 " JOIN tax_usage tu ON (tu.obj_id = od.obj_id)" .
66 " JOIN object_data od2 ON (od2.obj_id = tu.tax_id)" .
67 " LEFT JOIN container_settings cs ON (cs.id = od.obj_id AND keyword = " .
$ilDB->quote(
71 " WHERE od.type = " .
$ilDB->quote(
"cat",
"text") .
72 " AND tu.tax_id > " .
$ilDB->quote(0,
"integer");
73 $set =
$ilDB->query($sql);
74 while ($row =
$ilDB->fetchAssoc($set)) {
76 $res[$row[
"tax_id"]][$row[
"obj_id"]] = array(
77 "tax_id" => (
int) $row[
"tax_id"],
78 "tax_title" => $row[
"tax_title"],
79 "tax_status" => (
bool) $row[
"tax_status"],
80 "obj_title" => $row[
"obj_title"],
81 "obj_type" => $row[
"obj_type"],
82 "obj_id" => (
int) $row[
"obj_id"],
83 "ref_id" => (
int) $row[
"ref_id"],
84 "path" => $this->
getPath((
int) $row[
"ref_id"])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isDeleted(int $a_node_id)
This is a wrapper for isSaved() with a more useful name.
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
__construct(Container $dic, ilPlugin $plugin)
getRepositoryTaxonomies()
__construct($a_id=0, $a_call_by_reference=true)