19 declare(strict_types=1);
39 $this->
http = $DIC->http();
42 $this->tree =
new ilTree($userId);
43 $this->tree->setTableNames(
'mail_tree',
'mail_obj_data');
45 $this->root_folder_id = (
new ilMailbox($userId))->getRooFolder();
46 $this->root_node_id = $this->tree->readRootId();
48 if ($this->root_folder_id !== $this->root_node_id) {
49 $DIC->logger()->mail()->error(
50 "Root folder id $this->root_folder_id does not match root node id $this->root_node_id for user $userId" 65 if ($this->
http->wrapper()->post()->has(
'mobj_id')) {
66 $folderId = $this->
http->wrapper()->post()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
67 } elseif ($this->
http->wrapper()->query()->has(
'mobj_id')) {
68 $folderId = $this->
http->wrapper()->query()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
70 $folderId = $this->
refinery->byTrying([
72 $this->
refinery->always($this->currentFolderId),
76 $this->currentFolderId = $folderId;
86 if (!isset($root[
'child']) && $this->root_node_id !== $this->root_folder_id) {
91 $root[
'title'] =
'a_root';
92 $root[
'm_type'] =
'root';
94 $root[
'rgt'] = PHP_INT_MAX;
95 $root[
'user_id'] = $this->tree->getTreeId();
103 return $this->
lng->txt(
"mail_folders");
108 $f = $this->
ui->factory();
112 ->withData($this->tree->getChilds($this->root_node_id))
113 ->withHighlightOnNodeClick(
false);
121 return parent::build($factory, $record, $environment)
123 $this->currentFolderId === (
int) $record[
'child']
144 $content = $this->
lng->txt(
'mail_folders');
145 } elseif ($a_node[
'depth'] < 3) {
146 $content = $this->
lng->txt(
'mail_' . $a_node[
'title']);
162 $iconType = $a_node[
'm_type'];
163 if ($a_node[
'm_type'] ===
'user_folder') {
176 $a_node[
'child'] = 0;
179 $this->
ctrl->setParameterByClass(ilMailFolderGUI::class,
'mobj_id', $a_node[
'child']);
180 $href = $this->
ctrl->getLinkTargetByClass([ilMailGUI::class, ilMailFolderGUI::class]);
181 $this->
ctrl->clearParametersByClass(ilMailFolderGUI::class);
Interface GlobalHttpState.
static get(string $a_var)
setSkipRootNode(bool $a_val)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This describes a Tree Node.
build(Factory $factory, $record, $environment=null)
__construct(ilMailGUI $parentObject, int $userId)
withHighlighted(bool $expanded)
Set $highlighted to true to have this node highlighted on loading.
static http()
Fetches the global http state from ILIAS.
Mail Box class Base class for creating and handling mail boxes.
getNodeId($a_node)
Get id for node.
getNodeStateToggleCmdClasses($record)
This describes a Tree Control.
repairRootNode(array $root)
Workaround for: https://mantis.ilias.de/view.php?id=40716.
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
setOrderField(string $a_val, bool $a_numeric=false)