ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPDCalendarBlockGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("Services/Calendar/classes/class.ilCalendarBlockGUI.php");
6 
21 {
22  public static $block_type = "pdcal";
23 
27  public function __construct()
28  {
29  parent::__construct(true);
30  $this->setBlockId(0);
31  }
32 
33 
37  public function getBlockType() : string
38  {
39  return self::$block_type;
40  }
41 
49  protected function initCategories()
50  {
51  include_once './Services/Calendar/classes/class.ilCalendarUserSettings.php';
52  if (!$this->initialized) {
55  } else {
57  }
58 
60  if ($this->getForceMonthView()) {
61  // nothing to do here
62  }
63  elseif (!$cats->getMode()) {
64  $cats->initialize($this->mode, (int) $_GET['ref_id'], true);
65  }
66  }
67  $this->initialized = true;
68  }
69 
73  public function returnToUpperContext()
74  {
75  global $DIC;
76 
77  $ilCtrl = $DIC['ilCtrl'];
78 
79  $ilCtrl->redirectByClass("ildashboardgui", "show");
80  }
81 }
$_GET["client_id"]
global $ilCtrl
Definition: ilias.php:18
Calendar blocks, displayed on personal desktop.
returnToUpperContext()
Return to upper context.
getForceMonthView()
Get force month view.
setBlockId($a_block_id=0)
Set Block Id.
static _getInstance()
get instance for logged in user
static _getInstance($a_usr_id=0)
get singleton instance
Calendar blocks, displayed in different contexts, e.g.
__construct(Container $dic, ilPlugin $plugin)
$DIC
Definition: xapitoken.php:46