56 if (is_null($di_container)) {
59 $this->dic = $di_container;
60 $this->ctrl = $DIC->ctrl();
61 $this->main_tpl = $DIC->ui()->mainTemplate();
62 $this->task = $DIC->task();
63 $this->
user = $DIC->user();
64 $this->
ui = $DIC->ui();
65 $this->lng = $DIC->language();
67 $this->lng->loadLanguageModule(
"task");
79 $next_class =
$ctrl->getNextClass($this);
80 $cmd =
$ctrl->getCmd(
"show");
82 switch ($next_class) {
84 if (in_array($cmd, array(
"show"))) {
103 $renderer =
$ui->renderer();
105 $collector = $this->task->derived()->factory()->collector();
107 $entries = $collector->getEntries($this->
user->getId());
109 $list_items_with_deadline = [];
110 $list_items_without_deadline = [];
114 foreach ($entries as
$i) {
117 $title = $i->getTitle();
120 if ($i->getRefId() > 0) {
128 if ($i->getWspId() > 0) {
135 if (strlen($i->getUrl()) > 0) {
136 $link = $i->getUrl();
139 if (strlen($link) > 0) {
140 $title =
$f->button()->shy($title, $link);
143 if ($i->getStartingTime() > 0) {
147 if ($i->getDeadline() > 0) {
151 $item =
$f->item()->standard($title)->withProperties($props);
152 if ($i->getDeadline() > 0) {
153 $list_items_with_deadline[] = $item;
155 $list_items_without_deadline[] = $item;
160 if (count($list_items_with_deadline) > 0 || count($list_items_without_deadline) > 0) {
163 if (count($list_items_with_deadline) > 0) {
164 $panels[] =
$f->panel()->listing()->standard(
165 $lng->txt(
"task_tasks_with_deadline"),
166 [
$f->item()->group(
"", $list_items_with_deadline)]
169 if (count($list_items_without_deadline) > 0) {
170 $panels[] =
$f->panel()->listing()->standard(
171 $lng->txt(
"task_tasks_without_deadline"),
172 [
$f->item()->group(
"", $list_items_without_deadline)]
177 $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 _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.