61 if (is_null($di_container)) {
64 $this->dic = $di_container;
65 $this->ctrl = $DIC->ctrl();
66 $this->main_tpl = $DIC->ui()->mainTemplate();
67 $this->task = $DIC->task();
68 $this->
user = $DIC->user();
69 $this->
ui = $DIC->ui();
70 $this->lng = $DIC->language();
71 $this->
help = $DIC->help();
73 $this->
help->setScreenIdComponent(
'task');
74 $this->lng->loadLanguageModule(
"task");
86 $next_class =
$ctrl->getNextClass($this);
87 $cmd =
$ctrl->getCmd(
"show");
89 switch ($next_class) {
91 if (in_array($cmd, array(
"show"))) {
109 $this->
help->setScreenId(
'derived_tasks');
112 $renderer =
$ui->renderer();
114 $collector = $this->task->derived()->factory()->collector();
116 $entries = $collector->getEntries($this->
user->getId());
118 $list_items_with_deadline = [];
119 $list_items_without_deadline = [];
123 foreach ($entries as
$i) {
126 $title = $i->getTitle();
129 if ($i->getRefId() > 0) {
137 if ($i->getWspId() > 0) {
144 if (strlen($i->getUrl()) > 0) {
145 $link = $i->getUrl();
148 if (strlen($link) > 0) {
149 $title =
$f->button()->shy($title, $link);
152 if ($i->getStartingTime() > 0) {
156 if ($i->getDeadline() > 0) {
160 $item =
$f->item()->standard($title)->withProperties($props);
161 if ($i->getDeadline() > 0) {
162 $list_items_with_deadline[] = $item;
164 $list_items_without_deadline[] = $item;
169 if (count($list_items_with_deadline) > 0 || count($list_items_without_deadline) > 0) {
172 if (count($list_items_with_deadline) > 0) {
173 $panels[] =
$f->panel()->listing()->standard(
174 $lng->txt(
"task_tasks_with_deadline"),
175 [
$f->item()->group(
"", $list_items_with_deadline)]
178 if (count($list_items_without_deadline) > 0) {
179 $panels[] =
$f->panel()->listing()->standard(
180 $lng->txt(
"task_tasks_without_deadline"),
181 [
$f->item()->group(
"", $list_items_without_deadline)]
186 $main_tpl->setContent($renderer->render($panels));
Class ChatMainBarProvider .
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
static _lookupTitle($a_id)
lookup object title
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
Tree handler for personal workspace.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct(\ILIAS\DI\Container $di_container=null)
Constructor.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupObjId($a_id)
static _lookupType($a_id, $a_reference=false)
lookup object type
lookupObjectId($a_node_id)
Get object id for node id.
show()
Show list of tasks.
executeCommand()
Execute command.