ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilPersonalDesktopGUI Class Reference

GUI class for personal desktop. More...

+ Collaboration diagram for ilPersonalDesktopGUI:

Public Member Functions

 ilPersonalDesktopGUI ()
 constructor
executeCommand ()
 execute command
 getStandardTemplates ()
 get standard templates
 getTreeModeTemplates ()
 get tree mode templates
 show ()
 show desktop
 getCenterColumnHTML ()
 Display center column.
 getRightColumnHTML ()
 Display right column.
 getLeftColumnHTML ()
 Display left column.
 prepareContentView ()
 dropItem ()
 drop item from desktop
 addItem ()
 add item to desktop
 removeMember ()
 copied from usr_personaldesktop.php
 displaySystemMessages ()
 Display system messages.
 displayFeedback ()
 Display Links for Feedback.
 multiarray_sort ($array, $key_sort)
 Returns the multidimenstional sorted array.
 setTabs ()
 set personal desktop tabs
 jumpToProfile ()
 workaround for menu in calendar only
 jumpToBookmarks ()
 workaround for menu in calendar only
 jumpToNotes ()
 workaround for menu in calendar only
 jumpToNews ()
 workaround for menu in calendar only
 jumpToLP ()
 workaround for menu in calendar only
 __loadNextClass ()
 __storeLastClass ($a_class)
 initColumn ($a_column_gui)
 Init ilColumnGUI.
 displayHeader ()
 display header and locator

Data Fields

 $tpl
 $lng
 $ilias
 $cmdClass = ''

Detailed Description

Member Function Documentation

ilPersonalDesktopGUI::__loadNextClass ( )

Definition at line 678 of file class.ilPersonalDesktopGUI.php.

References $_SESSION.

Referenced by executeCommand().

{
$stored_classes = array('ilpersonaldesktopgui',
'ilpersonalprofilegui',
'ilpdnotesgui',
'ilcalendarpresentationgui',
'ilbookmarkadministrationgui',
'illearningprogressgui');
if(isset($_SESSION['il_pd_history']) and in_array($_SESSION['il_pd_history'],$stored_classes))
{
return $_SESSION['il_pd_history'];
}
else
{
$this->ctrl->getNextClass($this);
}
}

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::__storeLastClass (   $a_class)

Definition at line 696 of file class.ilPersonalDesktopGUI.php.

References $_SESSION.

Referenced by executeCommand().

{
$_SESSION['il_pd_history'] = $a_class;
$this->cmdClass = $a_class;
}

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::addItem ( )

add item to desktop

Definition at line 419 of file class.ilPersonalDesktopGUI.php.

References $_GET, and show().

{
global $ilUser;
$ilUser->addDesktopItem($_GET["item_ref_id"], $_GET["type"]);
$this->show();
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::displayFeedback ( )

Display Links for Feedback.

Definition at line 454 of file class.ilPersonalDesktopGUI.php.

{
include_once("./Services/Feedback/classes/class.ilPDFeedbackBlockGUI.php");
$fb_block = new ilPDFeedbackBlockGUI("ilpersonaldesktopgui", "show");
return $fb_block->getHTML();
include_once('Services/Feedback/classes/class.ilFeedbackGUI.php');
$feedback_gui = new ilFeedbackGUI();
return $feedback_gui->getPDFeedbackListHTML();
}
ilPersonalDesktopGUI::displayHeader ( )

display header and locator

Definition at line 717 of file class.ilPersonalDesktopGUI.php.

References ilUtil\getImagePath().

Referenced by executeCommand().

{
$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_pd_b.gif"),
$this->lng->txt("personal_desktop"));
$this->tpl->setTitle($this->lng->txt("personal_desktop"));
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::displaySystemMessages ( )

Display system messages.

Definition at line 443 of file class.ilPersonalDesktopGUI.php.

{
include_once("Services/Mail/classes/class.ilPDSysMessageBlockGUI.php");
$sys_block = new ilPDSysMessageBlockGUI("ilpersonaldesktopgui", "show");
return $sys_block->getHTML();
}
ilPersonalDesktopGUI::dropItem ( )

drop item from desktop

Definition at line 408 of file class.ilPersonalDesktopGUI.php.

References $_GET, and show().

{
global $ilUser;
$ilUser->dropDesktopItem($_GET["item_ref_id"], $_GET["type"]);
$this->show();
}

+ Here is the call graph for this function:

& ilPersonalDesktopGUI::executeCommand ( )

execute command

Definition at line 79 of file class.ilPersonalDesktopGUI.php.

References $_GET, $cmd, $ilSetting, $ret, __loadNextClass(), __storeLastClass(), displayHeader(), ilUtil\getImagePath(), getStandardTemplates(), ilUtil\getStyleSheetLocation(), getTreeModeTemplates(), initColumn(), LP_MODE_PERSONAL_DESKTOP, ilUtil\redirect(), ilUtil\sendInfo(), setTabs(), and show().

{
global $ilUser, $ilSetting;
$next_class = $this->ctrl->getNextClass();
$this->ctrl->setReturn($this, "show");
$this->tpl->addCss(ilUtil::getStyleSheetLocation('filesystem','delos.css','Services/Calendar'));
// check whether personal profile of user is incomplete
if ($ilUser->getProfileIncomplete() && $next_class != "ilpersonalprofilegui")
{
$this->ctrl->redirectByClass("ilpersonalprofilegui");
}
// check whether password of user have to be changed due to first login
if( $ilUser->isPasswordChangeDemanded() && $next_class != "ilpersonalprofilegui" )
{
ilUtil::sendInfo( $this->lng->txt('password_change_on_first_login_demand'), true );
$this->ctrl->redirectByClass("ilpersonalprofilegui");
}
// check whether password of user is expired
if( $ilUser->isPasswordExpired() && $next_class != "ilpersonalprofilegui" )
{
$msg = $this->lng->txt('password_expired');
$password_age = $ilUser->getPasswordAge();
ilUtil::sendInfo( sprintf($msg,$password_age), true );
$this->ctrl->redirectByClass("ilpersonalprofilegui");
}
// read last active subsection
if($_GET['PDHistory'])
{
$next_class = $this->__loadNextClass();
}
$this->__storeLastClass($next_class);
switch($next_class)
{
//Feedback
case "ilfeedbackgui":
$this->setTabs();
$this->tpl->setTitle($this->lng->txt("personal_desktop"));
$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_pd_b.gif"),
$this->lng->txt("personal_desktop"));
include_once("Services/Feedback/classes/class.ilFeedbackGUI.php");
$feedback_gui = new ilFeedbackGUI();
$ret =& $this->ctrl->forwardCommand($feedback_gui);
break;
// bookmarks
case "ilbookmarkadministrationgui":
if ($ilSetting->get('disable_bookmarks'))
{
ilUtil::sendInfo($this->lng->txt('permission_denied'), true);
ilUtil::redirect('ilias.php?baseClass=ilPersonalDesktopGUI');
return;
}
include_once("./Services/PersonalDesktop/classes/class.ilBookmarkAdministrationGUI.php");
$bookmark_gui = new ilBookmarkAdministrationGUI();
if ($bookmark_gui->getMode() == 'tree') {
} else {
}
$this->setTabs();
$ret =& $this->ctrl->forwardCommand($bookmark_gui);
break;
// profile
case "ilpersonalprofilegui":
$this->setTabs();
include_once("./Services/User/classes/class.ilPersonalProfileGUI.php");
$profile_gui = new ilPersonalProfileGUI();
$ret =& $this->ctrl->forwardCommand($profile_gui);
break;
// profile
case "ilobjusergui":
include_once('./Services/User/classes/class.ilObjUserGUI.php');
$user_gui = new ilObjUserGUI("",$_GET["user"], false, false);
$ret =& $this->ctrl->forwardCommand($user_gui);
break;
case 'ilcalendarpresentationgui':
$this->displayHeader();
$this->setTabs();
include_once('./Services/Calendar/classes/class.ilCalendarPresentationGUI.php');
$ret = $this->ctrl->forwardCommand($cal);
$this->tpl->show();
break;
// pd notes
case "ilpdnotesgui":
if ($ilSetting->get('disable_notes'))
{
ilUtil::sendInfo($this->lng->txt('permission_denied'), true);
ilUtil::redirect('ilias.php?baseClass=ilPersonalDesktopGUI');
return;
}
$this->setTabs();
include_once("./Services/Notes/classes/class.ilPDNotesGUI.php");
$pd_notes_gui = new ilPDNotesGUI();
$ret =& $this->ctrl->forwardCommand($pd_notes_gui);
break;
// pd news
case "ilpdnewsgui":
$this->setTabs();
include_once("./Services/News/classes/class.ilPDNewsGUI.php");
$pd_news_gui = new ilPDNewsGUI();
$ret =& $this->ctrl->forwardCommand($pd_news_gui);
break;
case "illearningprogressgui":
$this->setTabs();
include_once './Services/Tracking/classes/class.ilLearningProgressGUI.php';
$ret =& $this->ctrl->forwardCommand($new_gui);
break;
case "ilcolumngui":
$this->setTabs();
include_once("./Services/Block/classes/class.ilColumnGUI.php");
$column_gui = new ilColumnGUI("pd");
$this->initColumn($column_gui);
$this->show();
break;
default:
$this->setTabs();
$cmd = $this->ctrl->getCmd("show");
$this->$cmd();
break;
}
return true;
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::getCenterColumnHTML ( )

Display center column.

Definition at line 288 of file class.ilPersonalDesktopGUI.php.

References $ilCtrl, IL_COL_CENTER, IL_COL_LEFT, IL_COL_RIGHT, IL_SCREEN_SIDE, and initColumn().

Referenced by show().

{
global $ilCtrl;
include_once("Services/Block/classes/class.ilColumnGUI.php");
$column_gui = new ilColumnGUI("pd", IL_COL_CENTER);
$this->initColumn($column_gui);
if ($ilCtrl->getNextClass() == "ilcolumngui" &&
$column_gui->getCmdSide() == IL_COL_CENTER)
{
$html = $ilCtrl->forwardCommand($column_gui);
}
else
{
if (!$ilCtrl->isAsynch())
{
if ($column_gui->getScreenMode() != IL_SCREEN_SIDE)
{
// right column wants center
if ($column_gui->getCmdSide() == IL_COL_RIGHT)
{
$column_gui = new ilColumnGUI("pd", IL_COL_RIGHT);
$this->initColumn($column_gui);
$html = $ilCtrl->forwardCommand($column_gui);
}
// left column wants center
if ($column_gui->getCmdSide() == IL_COL_LEFT)
{
$column_gui = new ilColumnGUI("pd", IL_COL_LEFT);
$this->initColumn($column_gui);
$html = $ilCtrl->forwardCommand($column_gui);
}
}
else
{
$html = $ilCtrl->getHTML($column_gui);
}
}
}
return $html;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::getLeftColumnHTML ( )

Display left column.

Definition at line 362 of file class.ilPersonalDesktopGUI.php.

References $ilCtrl, $lng, IL_COL_LEFT, IL_SCREEN_SIDE, and initColumn().

Referenced by show().

{
global $ilUser, $lng, $ilCtrl;
include_once("Services/Block/classes/class.ilColumnGUI.php");
$column_gui = new ilColumnGUI("pd", IL_COL_LEFT);
$this->initColumn($column_gui);
if ($ilCtrl->getNextClass() == "ilcolumngui" &&
$column_gui->getCmdSide() == IL_COL_LEFT &&
$column_gui->getScreenMode() == IL_SCREEN_SIDE)
{
$html = $ilCtrl->forwardCommand($column_gui);
}
else
{
if (!$ilCtrl->isAsynch())
{
$html = $ilCtrl->getHTML($column_gui);
}
}
return $html;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::getRightColumnHTML ( )

Display right column.

Definition at line 334 of file class.ilPersonalDesktopGUI.php.

References $ilCtrl, $lng, IL_COL_RIGHT, IL_SCREEN_SIDE, and initColumn().

Referenced by show().

{
global $ilUser, $lng, $ilCtrl;
include_once("Services/Block/classes/class.ilColumnGUI.php");
$column_gui = new ilColumnGUI("pd", IL_COL_RIGHT);
$this->initColumn($column_gui);
if ($ilCtrl->getNextClass() == "ilcolumngui" &&
$column_gui->getCmdSide() == IL_COL_RIGHT &&
$column_gui->getScreenMode() == IL_SCREEN_SIDE)
{
$html = $ilCtrl->forwardCommand($column_gui);
}
else
{
if (!$ilCtrl->isAsynch())
{
$html = $ilCtrl->getHTML($column_gui);
}
}
return $html;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::getStandardTemplates ( )

get standard templates

Definition at line 237 of file class.ilPersonalDesktopGUI.php.

Referenced by executeCommand().

{
// add template for content
$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
$this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");
}

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::getTreeModeTemplates ( )

get tree mode templates

Definition at line 248 of file class.ilPersonalDesktopGUI.php.

Referenced by executeCommand().

{
// add template for content
//$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_tree_content.html");
$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
$this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");
}

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::ilPersonalDesktopGUI ( )

constructor

Definition at line 50 of file class.ilPersonalDesktopGUI.php.

References $_GET, $_SESSION, $ilCtrl, $ilias, $lng, and $tpl.

{
global $ilias, $tpl, $lng, $rbacsystem, $ilCtrl, $ilMainMenu, $ilUser, $tree;
$this->tpl =& $tpl;
$this->lng =& $lng;
$this->ilias =& $ilias;
$this->ctrl =& $ilCtrl;
$ilCtrl->setContext($ilUser->getId(),
"user");
$ilMainMenu->setActive("desktop");
$this->lng->loadLanguageModule("pdesk");
// catch hack attempts
if ($_SESSION["AccountId"] == ANONYMOUS_USER_ID)
{
$this->ilias->raiseError($this->lng->txt("msg_not_available_for_anon"),$this->ilias->error_obj->MESSAGE);
}
$this->cmdClass = $_GET['cmdClass'];
//$tree->useCache(false);
}
ilPersonalDesktopGUI::initColumn (   $a_column_gui)

Init ilColumnGUI.

Definition at line 705 of file class.ilPersonalDesktopGUI.php.

Referenced by executeCommand(), getCenterColumnHTML(), getLeftColumnHTML(), and getRightColumnHTML().

{
$pd_set = new ilSetting("pd");
if ($pd_set->get("enable_block_moving"))
{
$a_column_gui->setEnableMovement(true);
}
}

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::jumpToBookmarks ( )

workaround for menu in calendar only

Definition at line 635 of file class.ilPersonalDesktopGUI.php.

References ilUtil\redirect(), and ilUtil\sendInfo().

{
if ($this->ilias->getSetting("disable_bookmarks"))
{
ilUtil::sendInfo($this->lng->txt('permission_denied'), true);
ilUtil::redirect('ilias.php?baseClass=ilPersonalDesktopGUI');
return;
}
$this->ctrl->redirectByClass("ilbookmarkadministrationgui");
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::jumpToLP ( )

workaround for menu in calendar only

Definition at line 673 of file class.ilPersonalDesktopGUI.php.

{
$this->ctrl->redirectByClass("illearningprogressgui");
}
ilPersonalDesktopGUI::jumpToNews ( )

workaround for menu in calendar only

Definition at line 665 of file class.ilPersonalDesktopGUI.php.

{
$this->ctrl->redirectByClass("ilpdnewsgui");
}
ilPersonalDesktopGUI::jumpToNotes ( )

workaround for menu in calendar only

Definition at line 650 of file class.ilPersonalDesktopGUI.php.

References ilUtil\redirect(), and ilUtil\sendInfo().

{
if ($this->ilias->getSetting('disable_notes'))
{
ilUtil::sendInfo($this->lng->txt('permission_denied'), true);
ilUtil::redirect('ilias.php?baseClass=ilPersonalDesktopGUI');
return;
}
$this->ctrl->redirectByClass("ilpdnotesgui");
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::jumpToProfile ( )

workaround for menu in calendar only

Definition at line 627 of file class.ilPersonalDesktopGUI.php.

{
$this->ctrl->redirectByClass("ilpersonalprofilegui");
}
ilPersonalDesktopGUI::multiarray_sort (   $array,
  $key_sort 
)

Returns the multidimenstional sorted array.

Returns the multidimenstional sorted array

Author
Muzaffar Altaf malta.nosp@m.f@tz.nosp@m.i.de
Parameters
array$arraysThe array to be sorted
string$key_sortThe keys on which array must be sorted public

Definition at line 475 of file class.ilPersonalDesktopGUI.php.

References $n.

{
if ($array) {
$key_sorta = explode(";", $key_sort);
$multikeys = array_keys($array);
$keys = array_keys($array[$multikeys[0]]);
for($m=0; $m < count($key_sorta); $m++) {
$nkeys[$m] = trim($key_sorta[$m]);
}
$n += count($key_sorta);
for($i=0; $i < count($keys); $i++){
if(!in_array($keys[$i], $key_sorta)) {
$nkeys[$n] = $keys[$i];
$n += "1";
}
}
for($u=0;$u<count($array); $u++) {
$arr = $array[$multikeys[$u]];
for($s=0; $s<count($nkeys); $s++) {
$k = $nkeys[$s];
$output[$multikeys[$u]][$k] = $array[$multikeys[$u]][$k];
}
}
sort($output);
return $output;
}
}
ilPersonalDesktopGUI::prepareContentView ( )

Definition at line 387 of file class.ilPersonalDesktopGUI.php.

References ilUtil\getImagePath(), ilUtil\infoPanel(), and ilUtil\sendInfo().

{
// add template for content
$this->pd_tpl = new ilTemplate("tpl.usr_personaldesktop.html", true, true);
$this->tpl->getStandardTemplate();
// catch feedback message
// display infopanel if something happened
$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_pd_b.gif"),
$this->lng->txt("personal_desktop"));
$this->tpl->setTitle($this->lng->txt("personal_desktop"));
$this->tpl->setVariable("IMG_SPACE", ilUtil::getImagePath("spacer.gif", false));
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::removeMember ( )

copied from usr_personaldesktop.php

Definition at line 430 of file class.ilPersonalDesktopGUI.php.

References show().

{
global $err_msg;
if (strlen($err_msg) > 0)
{
$this->ilias->raiseError($this->lng->txt($err_msg),$this->ilias->error_obj->MESSAGE);
}
$this->show();
}

+ Here is the call graph for this function:

ilPersonalDesktopGUI::setTabs ( )

set personal desktop tabs

Definition at line 510 of file class.ilPersonalDesktopGUI.php.

References $_GET, $_SESSION, $command, $ilCtrl, $ilSetting, $inc_type, $inhalt1, $script_name, ilObjUserTracking\_enabledLearningProgress(), and ilCalendarSettings\_getInstance().

Referenced by executeCommand().

{
$this->tpl->addBlockFile("TABS", "tabs", "tpl.tabs.html");
$script_name = basename($_SERVER["SCRIPT_NAME"]);
$command = $_GET["cmd"] ? $_GET["cmd"] : "";
if (ereg("whois",$command))
{
$who_is_online = true;
}
// to do: use ilTabsGUI here!
// personal desktop home
$inc_type = (strtolower($_GET["baseClass"]) == "ilpersonaldesktopgui" &&
(strtolower($this->cmdClass) == "ilpersonaldesktopgui" ||
$this->cmdClass == "" || (strtolower($this->cmdClass)) == "ilfeedbackgui"
|| $ilCtrl->getNextClass() == "ilcolumngui"))
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type, $this->ctrl->getLinkTarget($this), $this->lng->txt("overview"));
// user profile
$inc_type = (strtolower($this->cmdClass) == "ilpersonalprofilegui")
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type, $this->ctrl->getLinkTargetByClass("ilPersonalProfileGUI"),
$this->lng->txt("personal_profile"));
if ($_SESSION["AccountId"] != ANONYMOUS_USER_ID)
{
// news
if ($ilSetting->get("block_activated_news"))
{
$inc_type = ($ilCtrl->getNextClass() == "ilpdnewsgui")
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type,
$this->ctrl->getLinkTargetByClass("ilpdnewsgui"),
$this->lng->txt("news"));
}
// new calendar
include_once('./Services/Calendar/classes/class.ilCalendarSettings.php');
if($settings->isEnabled())
{
$inc_type = (strtolower($this->cmdClass) == "ilcalendarpresentationgui")
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type,
$this->ctrl->getLinkTargetByClass("ilcalendarpresentationgui"),
$this->lng->txt("calendar"));
}
// private notes
if (!$this->ilias->getSetting("disable_notes"))
{
$inc_type = (strtolower($this->cmdClass) == "ilpdnotesgui" ||
strtolower($this->cmdClass) == "ilnotegui")
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type,
$this->ctrl->getLinkTargetByClass("ilpdnotesgui"),
$this->lng->txt("private_notes"));
}
// user bookmarks
if (!$this->ilias->getSetting("disable_bookmarks"))
{
$inc_type = (strtolower($this->cmdClass) == "ilbookmarkadministrationgui")
? "tabactive"
: "tabinactive";
$inhalt1[] = array($inc_type,
$this->ctrl->getLinkTargetByClass("ilbookmarkadministrationgui"),
$this->lng->txt("bookmarks"));
}
}
// Tracking
include_once("Services/Tracking/classes/class.ilObjUserTracking.php");
{
$cmd_classes = array('illplistofobjectsgui','illplistofsettingsgui','illearningprogressgui','illplistofprogressgui');
$inc_type = in_array(strtolower($this->cmdClass),$cmd_classes) ? 'tabactive' : 'tabinactive';
$inhalt1[] = array($inc_type, $this->ctrl->getLinkTargetByClass("ilLearningProgressGUI"),
$this->lng->txt("learning_progress"));
}
for ( $i=0; $i<sizeof($inhalt1); $i++)
{
if ($inhalt1[$i][1] != "")
{ $this->tpl->setCurrentBlock("tab");
$this->tpl->setVariable("TAB_TYPE",$inhalt1[$i][0]);
$this->tpl->setVariable("TAB_LINK",$inhalt1[$i][1]);
$this->tpl->setVariable("TAB_TEXT",$inhalt1[$i][2]);
$this->tpl->setVariable("TAB_TARGET",$inhalt1[$i][3]);
$this->tpl->parseCurrentBlock();
}
}
$this->tpl->setCurrentBlock("tabs");
$this->tpl->parseCurrentBlock();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalDesktopGUI::show ( )

show desktop

Definition at line 260 of file class.ilPersonalDesktopGUI.php.

References getCenterColumnHTML(), ilUtil\getImagePath(), getLeftColumnHTML(), getRightColumnHTML(), ilUtil\infoPanel(), and ilUtil\sendInfo().

Referenced by addItem(), dropItem(), executeCommand(), and removeMember().

{
// add template for content
$this->pd_tpl = new ilTemplate("tpl.usr_personaldesktop.html", true, true);
$this->tpl->getStandardTemplate();
// catch feedback message
// display infopanel if something happened
$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_pd_b.gif"),
$this->lng->txt("personal_desktop"));
$this->tpl->setTitle($this->lng->txt("personal_desktop"));
$this->tpl->setVariable("IMG_SPACE", ilUtil::getImagePath("spacer.gif", false));
$this->tpl->setContent($this->getCenterColumnHTML());
$this->tpl->setRightContent($this->getRightColumnHTML());
$this->tpl->setLeftContent($this->getLeftColumnHTML());
$this->tpl->show();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Field Documentation

ilPersonalDesktopGUI::$cmdClass = ''

Definition at line 45 of file class.ilPersonalDesktopGUI.php.

ilPersonalDesktopGUI::$ilias

Definition at line 43 of file class.ilPersonalDesktopGUI.php.

Referenced by ilPersonalDesktopGUI().

ilPersonalDesktopGUI::$lng
ilPersonalDesktopGUI::$tpl

Definition at line 41 of file class.ilPersonalDesktopGUI.php.

Referenced by ilPersonalDesktopGUI().


The documentation for this class was generated from the following file: