46 if (is_null($di_container)) {
49 $this->dic = $di_container;
50 $this->
ctrl = $DIC->ctrl();
51 $this->main_tpl = $DIC->ui()->mainTemplate();
52 $this->task = $DIC->task();
53 $this->
user = $DIC->user();
54 $this->
ui = $DIC->ui();
55 $this->
lng = $DIC->language();
56 $this->
help = $DIC->help();
58 $this->
help->setScreenIdComponent(
'task');
59 $this->
lng->loadLanguageModule(
"task");
72 $cmd = $ctrl->
getCmd(
"show");
83 protected function show(): void
89 $main_tpl->
setTitle($lng->
txt(
"task_derived_tasks"));
91 $this->
help->setScreenId(
'derived_tasks');
96 $collector = $this->task->derived()->factory()->collector();
98 $entries = $collector->getEntries($this->
user->getId());
100 $list_items_with_deadline = [];
101 $list_items_without_deadline = [];
104 foreach ($entries as $i) {
107 $title = $i->getTitle();
110 if ($i->getRefId() > 0) {
118 if ($i->getWspId() > 0) {
125 if (strlen($i->getUrl()) > 0) {
126 $link = $i->getUrl();
129 if (strlen($link) > 0) {
130 $title =
$f->button()->shy($title, $link);
133 if ($i->getStartingTime() > 0) {
137 if ($i->getDeadline() > 0) {
141 $item =
$f->item()->standard($title)->withProperties($props);
142 if ($i->getDeadline() > 0) {
143 $list_items_with_deadline[] = $item;
145 $list_items_without_deadline[] = $item;
150 if (count($list_items_with_deadline) > 0 || count($list_items_without_deadline) > 0) {
153 if (count($list_items_with_deadline) > 0) {
154 $panels[] =
$f->panel()->listing()->standard(
155 $lng->
txt(
"task_tasks_with_deadline"),
156 [
$f->item()->group(
"", $list_items_with_deadline)]
159 if (count($list_items_without_deadline) > 0) {
160 $panels[] =
$f->panel()->listing()->standard(
161 $lng->
txt(
"task_tasks_without_deadline"),
162 [
$f->item()->group(
"", $list_items_without_deadline)]
169 $this->main_tpl->setOnScreenMessage(
'info', $lng->
txt(
"task_no_tasks"));
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getCmd(?string $fallback_command=null)
ilGlobalTemplateInterface $main_tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContent(string $a_html)
Sets content for standard template.
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
Customizing of pimple-DIC for ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
getNextClass($a_gui_class=null)
static _lookupTitle(int $obj_id)
renderer()
Get a renderer for UI components.
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
loadStandardTemplate()
This loads the standard template "tpl.adm_content.html" and "tpl.statusline.html" the CONTENT and STA...
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
printToStdout(string $part=self::DEFAULT_BLOCK, bool $has_tabs=true, bool $skip_main_menu=false)
lookupObjectId(int $a_node_id)
Get object id for node id.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
factory()
Get the factory that crafts UI components.
show()
Show list of tasks.
executeCommand()
Execute command.
static _lookupType(int $id, bool $reference=false)
__construct(?Container $di_container=null)
Constructor.