Public Member Functions | Data Fields

ilObjFileBasedLMGUI Class Reference

Inheritance diagram for ilObjFileBasedLMGUI:
Collaboration diagram for ilObjFileBasedLMGUI:

Public Member Functions

 ilObjFileBasedLMGUI ($a_data, $a_id=0, $a_call_by_reference=true, $a_prepare_output=true)
 Constructor.
 executeCommand ()
 execute command
 properties ()
 edit properties of object (admin form)
 saveProperties ()
 save properties
 saveObject ()
 save object public
 editObject ()
 edit properties of object (admin form)
 edit ()
 edit properties of object (module form)
 cancel ()
 cancel editing
 update ()
 update properties
 setStartFile ($a_file)
 perm ()
 permission form
 permSave ()
 save permissions
 addRole ()
 add role
 owner ()
 show owner of learning module
 chooseMetaSectionObject ($a_target="")
 choose meta data section (called by administration)
 chooseMetaSection ()
 choose meta data section (called by module)
 addMetaObject ($a_target="")
 add meta data object (called by administration)
 addMeta ()
 add meta data object (called by module)
 deleteMetaObject ($a_target="")
 delete meta data object (called by administration)
 deleteMeta ()
 delete meta data object (called by module)
 editMetaObject ($a_target="")
 edit meta data (called by administration)
 editMeta ()
 edit meta data (called by module)
 saveMetaObject ($a_target="")
 save meta data (called by administration)
 saveMeta ()
 save meta data (called by module)
 saveBibItemObject ($a_target="")
 save bib item (admin call)
 saveBibItem ()
 save bib item (module call)
 editBibItemObject ($a_target="")
 edit bib items (admin call)
 editBibItem ()
 edit bib items (module call)
 deleteBibItemObject ($a_target="")
 delete bib item (admin call)
 deleteBibItem ()
 delete bib item (module call)
 addBibItemObject ($a_target="")
 add bib item (admin call)
 addBibItem ()
 add bib item (module call)
 frameset ()
 output main frameset of media pool left frame: explorer tree of folders right frame: media pool content
 explorer ()
 directory explorer
 setLocator ($a_tree="", $a_id="", $scriptname="adm_object.php")
 set locator
 getTemplate ()
 output main header (title and locator)
 showLearningModule ()
 setTabs ()
 output tabs
 getTabs (&$tabs_gui)
 adds tabs to tab gui object

Data Fields

 $output_prepared

Detailed Description

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


Member Function Documentation

ilObjFileBasedLMGUI::addBibItem (  ) 

add bib item (module call)

Definition at line 596 of file class.ilObjFileBasedLMGUI.php.

References addBibItemObject().

        {
                //$this->setTabs();
                $this->addBibItemObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::addBibItemObject ( a_target = ""  ) 

add bib item (admin call)

Definition at line 554 of file class.ilObjFileBasedLMGUI.php.

References $_GET, $_POST, ilObjectGUI::$data, and sendInfo().

Referenced by addBibItem().

        {
                $bibItemName = $_POST["bibItemName"] ? $_POST["bibItemName"] : $_GET["bibItemName"];
                $bibItemIndex = $_POST["bibItemIndex"] ? $_POST["bibItemIndex"] : $_GET["bibItemIndex"];
                if ($bibItemName == "BibItem")
                {
                        include_once "content/classes/class.ilBibItem.php";
                        $bib_item =& new ilBibItem();
                        $bib_item->setId($this->object->getId());
                        $bib_item->setType($this->object->getType());
                        $bib_item->read();
                }

                include_once "content/classes/class.ilBibItemGUI.php";
                $bib_gui =& new ilBibItemGUI();
                $bib_gui->setObject($this->object);
                if ($bibItemIndex == "")
                        $bibItemIndex = 0;
                $bibItemPath = $_POST["bibItemPath"] ? $_POST["bibItemPath"] : $_GET["bibItemPath"];

                //if ($bibItemName != "" && $bibItemName != "BibItem")
                if ($bibItemName != "")
                {
                        $bib_gui->bib_obj->add($bibItemName, $bibItemPath, $bibItemIndex);
                        $data = $bib_gui->bib_obj->getElement("BibItem");
                        $bibItemIndex = (count($data) - 1);
                }
                else
                {
                        sendInfo($this->lng->txt("bibitem_choose_element"), true);
                }
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=" . $this->object->getRefId();
                }

                $bib_gui->edit("ADM_CONTENT", "adm_content", $a_target, $bibItemIndex);
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjFileBasedLMGUI::addMeta (  ) 

add meta data object (called by module)

Definition at line 368 of file class.ilObjFileBasedLMGUI.php.

References addMetaObject().

        {
                $this->addMetaObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::addMetaObject ( a_target = ""  ) 

add meta data object (called by administration)

Definition at line 337 of file class.ilObjFileBasedLMGUI.php.

References $_GET, $_POST, and sendInfo().

Referenced by addMeta().

        {
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=".$this->object->getRefId();
                }

                include_once "classes/class.ilMetaDataGUI.php";
                $meta_gui =& new ilMetaDataGUI();
                $meta_gui->setObject($this->object);
                $meta_name = $_POST["meta_name"] ? $_POST["meta_name"] : $_GET["meta_name"];
                $meta_index = $_POST["meta_index"] ? $_POST["meta_index"] : $_GET["meta_index"];
                if ($meta_index == "")
                        $meta_index = 0;
                $meta_path = $_POST["meta_path"] ? $_POST["meta_path"] : $_GET["meta_path"];
                $meta_section = $_POST["meta_section"] ? $_POST["meta_section"] : $_GET["meta_section"];
                if ($meta_name != "")
                {
                        $meta_gui->meta_obj->add($meta_name, $meta_path, $meta_index);
                }
                else
                {
                        sendInfo($this->lng->txt("meta_choose_element"), true);
                }
                $meta_gui->edit("ADM_CONTENT", "adm_content", $a_target, $meta_section);
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjFileBasedLMGUI::addRole (  ) 

add role

Definition at line 290 of file class.ilObjFileBasedLMGUI.php.

References $_GET, ilObjectGUI::addRoleObject(), and ilObjectGUI::setReturnLocation().

        {
                $this->setReturnLocation("addRole",
                        "fblm_edit.php?ref_id=".$_GET["ref_id"]."&obj_id=".$_GET["obj_id"]."&cmd=perm");
                $this->addRoleObject();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::cancel (  ) 

cancel editing

Definition at line 241 of file class.ilObjFileBasedLMGUI.php.

References $_GET, ilObjectGUI::cancelObject(), and ilObjectGUI::setReturnLocation().

        {
                $this->setReturnLocation("cancel","fblm_edit.php?cmd=listFiles&ref_id=".$_GET["ref_id"]);
                $this->cancelObject();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::chooseMetaSection (  ) 

choose meta data section (called by module)

Definition at line 327 of file class.ilObjFileBasedLMGUI.php.

References chooseMetaSectionObject().

        {
                //$this->setTabs();
                $this->chooseMetaSectionObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::chooseMetaSectionObject ( a_target = ""  ) 

choose meta data section (called by administration)

Definition at line 309 of file class.ilObjFileBasedLMGUI.php.

References $_REQUEST.

Referenced by chooseMetaSection().

        {
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=".$this->object->getRefId();
                }

                include_once "classes/class.ilMetaDataGUI.php";
                $meta_gui =& new ilMetaDataGUI();
                $meta_gui->setObject($this->object);
                $meta_gui->edit("ADM_CONTENT", "adm_content",
                        $a_target, $_REQUEST["meta_section"]);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::deleteBibItem (  ) 

delete bib item (module call)

Definition at line 545 of file class.ilObjFileBasedLMGUI.php.

References deleteBibItemObject().

        {
                //$this->setTabs();
                $this->deleteBibItemObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::deleteBibItemObject ( a_target = ""  ) 

delete bib item (admin call)

Definition at line 523 of file class.ilObjFileBasedLMGUI.php.

References $_GET, and $_POST.

Referenced by deleteBibItem().

        {
                include_once "content/classes/class.ilBibItemGUI.php";
                $bib_gui =& new ilBibItemGUI();
                $bib_gui->setObject($this->object);
                $bibItemIndex = $_POST["bibItemIndex"] ? $_POST["bibItemIndex"] : $_GET["bibItemIndex"];
                $bib_gui->bib_obj->delete($_GET["bibItemName"], $_GET["bibItemPath"], $bibItemIndex);
                if (strpos($bibItemIndex, ",") > 0)
                {
                        $bibItemIndex = substr($bibItemIndex, 0, strpos($bibItemIndex, ","));
                }
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=" . $this->object->getRefId();
                }

                $bib_gui->edit("ADM_CONTENT", "adm_content", $a_target, $bibItemIndex);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::deleteMeta (  ) 

delete meta data object (called by module)

Definition at line 397 of file class.ilObjFileBasedLMGUI.php.

References deleteMetaObject().

        {
                $this->deleteMetaObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::deleteMetaObject ( a_target = ""  ) 

delete meta data object (called by administration)

Definition at line 378 of file class.ilObjFileBasedLMGUI.php.

References $_GET, and $_POST.

Referenced by deleteMeta().

        {
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=".$this->object->getRefId();
                }

                include_once "classes/class.ilMetaDataGUI.php";
                $meta_gui =& new ilMetaDataGUI();
                $meta_gui->setObject($this->object);
                $meta_index = $_POST["meta_index"] ? $_POST["meta_index"] : $_GET["meta_index"];
                $meta_gui->meta_obj->delete($_GET["meta_name"], $_GET["meta_path"], $meta_index);
                $meta_gui->edit("ADM_CONTENT", "adm_content", $a_target, $_GET["meta_section"]);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::edit (  ) 

edit properties of object (module form)

Definition at line 229 of file class.ilObjFileBasedLMGUI.php.

References $_GET, editObject(), ilObjectGUI::prepareOutput(), and ilObjectGUI::setFormAction().

        {
                $this->prepareOutput();
                $this->setFormAction("update", "fblm_edit.php?cmd=post&ref_id=".$_GET["ref_id"].
                        "&obj_id=".$_GET["obj_id"]);
                $this->editObject();
                $this->tpl->show();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::editBibItem (  ) 

edit bib items (module call)

Definition at line 514 of file class.ilObjFileBasedLMGUI.php.

References editBibItemObject().

        {
                //$this->setTabs();
                $this->editBibItemObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::editBibItemObject ( a_target = ""  ) 

edit bib items (admin call)

Definition at line 492 of file class.ilObjFileBasedLMGUI.php.

References $_GET, and $_POST.

Referenced by editBibItem().

        {
                include_once "content/classes/class.ilBibItemGUI.php";
                $bib_gui =& new ilBibItemGUI();
                $bib_gui->setObject($this->object);
                $bibItemIndex = $_POST["bibItemIndex"] ? $_POST["bibItemIndex"] : $_GET["bibItemIndex"];
                $bibItemIndex *= 1;
                if ($bibItemIndex < 0)
                {
                        $bibItemIndex = 0;
                }
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=" . $this->object->getRefId();
                }

                $bib_gui->edit("ADM_CONTENT", "adm_content", $a_target, $bibItemIndex);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::editMeta (  ) 

edit meta data (called by module)

Definition at line 423 of file class.ilObjFileBasedLMGUI.php.

References editMetaObject().

        {
                $this->editMetaObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::editMetaObject ( a_target = ""  ) 

edit meta data (called by administration)

Definition at line 406 of file class.ilObjFileBasedLMGUI.php.

References $_GET.

Referenced by editMeta().

        {
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=".$this->object->getRefId();
                }

                include_once "classes/class.ilMetaDataGUI.php";
                $meta_gui =& new ilMetaDataGUI();
                $meta_gui->setObject($this->object);
                $meta_gui->edit("ADM_CONTENT", "adm_content", $a_target, $_GET["meta_section"]);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::editObject (  ) 

edit properties of object (admin form)

public

Reimplemented from ilObjectGUI.

Definition at line 202 of file class.ilObjFileBasedLMGUI.php.

References $rbacsystem, ilObjectGUI::$tpl, and ilObjectGUI::$tree.

Referenced by edit().

        {
                global $rbacsystem, $tree, $tpl;

                if (!$rbacsystem->checkAccess("visible,write",$this->object->getRefId()))
                {
                        $this->ilias->raiseError($this->lng->txt("permission_denied"),$this->ilias->error_obj->MESSAGE);
                }

                // edit button
                $this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");

                if (!defined("ILIAS_MODULE"))
                {
                        $this->tpl->setCurrentBlock("btn_cell");
                        $this->tpl->setVariable("BTN_LINK","content/fblm_edit.php?ref_id=".$this->object->getRefID());
                        $this->tpl->setVariable("BTN_TARGET"," target=\"bottom\" ");
                        $this->tpl->setVariable("BTN_TXT",$this->lng->txt("edit"));
                        $this->tpl->parseCurrentBlock();
                }

                //parent::editObject();
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::executeCommand (  ) 

execute command

Reimplemented from ilObjectGUI.

Definition at line 78 of file class.ilObjFileBasedLMGUI.php.

References $cmd, getTemplate(), setLocator(), and setTabs().

        {
                $fs_gui =& new ilFileSystemGUI($this->object->getDataDirectory());
                $fs_gui->getTabs($this->tabs_gui);
                $this->getTemplate();
                $this->setLocator();
                $this->setTabs();

                $next_class = $this->ctrl->getNextClass($this);
                $cmd = $this->ctrl->getCmd();
//echo "<br>cmd:$cmd:next_class:$next_class:";
                switch($next_class)
                {
                        case "ilfilesystemgui":
//echo "<br>data_dir:".$this->object->getDataDirectory().":";
                                $fs_gui->activateLabels(true, $this->lng->txt("cont_purpose"));
                                if ($this->object->getStartFile() != "")
                                {
                                        $fs_gui->labelFile($this->object->getStartFile(),
                                                $this->lng->txt("cont_startfile"));
                                }
                                $fs_gui->addCommand($this, "setStartFile", $this->lng->txt("cont_set_start_file"));
                                //$ret =& $fs_gui->executeCommand();
                                $ret =& $this->ctrl->forwardCommand($fs_gui);
                                break;

                        default:
                                $cmd = $this->ctrl->getCmd("frameset");
                                $ret =& $this->$cmd();
                                break;
                }
                $this->tpl->show();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::explorer (  ) 

directory explorer

Definition at line 618 of file class.ilObjFileBasedLMGUI.php.

References $exp, and ilUtil::getStyleSheetLocation().

        {
                $this->tpl = new ilTemplate("tpl.main.html", true, true);

                $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());

                $this->tpl->addBlockFile("CONTENT", "content", "tpl.explorer.html");

                require_once ("content/classes/class.ilFileExplorer.php");
                $exp = new ilFileExplorer($this->lm->getDataDirectory());

        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::frameset (  ) 

output main frameset of media pool left frame: explorer tree of folders right frame: media pool content

Definition at line 607 of file class.ilObjFileBasedLMGUI.php.

        {
                $this->tpl = new ilTemplate("tpl.fblm_edit_frameset.html", false, false, "content");
                $this->tpl->setVariable("HREF_FILES",$this->ctrl->getLinkTargetByClass(
                        "ilfilesystemgui", "listFiles"));
                $this->tpl->show();
        }

ilObjFileBasedLMGUI::getTabs ( &$  tabs_gui  ) 

adds tabs to tab gui object

Parameters:
object $tabs_gui ilTabsGUI object

Reimplemented from ilObjectGUI.

Definition at line 776 of file class.ilObjFileBasedLMGUI.php.

Referenced by setTabs().

        {
                // properties
                $tabs_gui->addTarget("properties",
                        $this->ctrl->getLinkTarget($this, "properties"), "properties",
                        get_class($this));

                // edit meta
                $tabs_gui->addTarget("meta_data",
                        $this->ctrl->getLinkTarget($this, "editMeta"), "editMeta",
                        get_class($this));

                // edit bib item information

                $tabs_gui->addTarget("bib_data",
                        $this->ctrl->getLinkTarget($this, "editBibItem"), "editBibItem",
                        get_class($this));

                // perm
                $tabs_gui->addTarget("perm_settings",
                        $this->ctrl->getLinkTarget($this, "perm"), "perm",
                        get_class($this));

                // owner
                $tabs_gui->addTarget("owner",
                        $this->ctrl->getLinkTarget($this, "owner"), "owner",
                        get_class($this));
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::getTemplate (  ) 

output main header (title and locator)

Definition at line 733 of file class.ilObjFileBasedLMGUI.php.

References ilObjectGUI::$lng.

Referenced by executeCommand().

        {
                global $lng;

                $this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
                //$this->tpl->setVariable("HEADER", $a_header_title);
                $this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
                //$this->tpl->setVariable("TXT_LOCATOR",$this->lng->txt("locator"));
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::ilObjFileBasedLMGUI ( a_data,
a_id = 0,
a_call_by_reference = true,
a_prepare_output = true 
)

Constructor.

public

Definition at line 52 of file class.ilObjFileBasedLMGUI.php.

References $ilCtrl, ilObjectGUI::$lng, ilObjectGUI::ilObjectGUI(), and ilObjectGUI::setTabTargetScript().

        {
                global $lng, $ilCtrl;

                $this->ctrl =& $ilCtrl;
                $this->ctrl->saveParameter($this, array("ref_id"));

                include_once("classes/class.ilTabsGUI.php");
                $this->tabs_gui =& new ilTabsGUI();

                $this->type = "htlm";
                $lng->loadLanguageModule("content");

                parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
                //$this->actions = $this->objDefinition->getActions("mep");
                $this->output_prepared = $a_prepare_output;

                if (defined("ILIAS_MODULE"))
                {
                        $this->setTabTargetScript("fblm_edit.php");
                }
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::owner (  ) 

show owner of learning module

Definition at line 300 of file class.ilObjFileBasedLMGUI.php.

References ilObjectGUI::ownerObject().

        {
                $this->ownerObject();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::perm (  ) 

permission form

Definition at line 268 of file class.ilObjFileBasedLMGUI.php.

References $_GET, ilObjectGUI::permObject(), and ilObjectGUI::setFormAction().

        {
                $this->setFormAction("permSave", "fblm_edit.php?cmd=permSave&ref_id=".$_GET["ref_id"].
                        "&obj_id=".$_GET["obj_id"]);
                $this->setFormAction("addRole", "fblm_edit.php?ref_id=".$_GET["ref_id"].
                        "&obj_id=".$_GET["obj_id"]."&cmd=addRole");
                $this->permObject();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::permSave (  ) 

save permissions

Definition at line 280 of file class.ilObjFileBasedLMGUI.php.

References $_GET, ilObjectGUI::permSaveObject(), and ilObjectGUI::setReturnLocation().

        {
                $this->setReturnLocation("permSave",
                        "fblm_edit.php?ref_id=".$_GET["ref_id"]."&obj_id=".$_GET["obj_id"]."&cmd=perm");
                $this->permSaveObject();
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::properties (  ) 

edit properties of object (admin form)

public

Definition at line 118 of file class.ilObjFileBasedLMGUI.php.

References $rbacsystem, ilObjectGUI::$tpl, and ilObjectGUI::$tree.

        {
                global $rbacsystem, $tree, $tpl;

                // edit button
                $this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");

                // view link
                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK", "fblm_presentation.php?ref_id=".$this->object->getRefID());
                $this->tpl->setVariable("BTN_TARGET"," target=\"ilContObj".$this->object->getID()."\" ");
                $this->tpl->setVariable("BTN_TXT",$this->lng->txt("view"));
                $this->tpl->parseCurrentBlock();

                // lm properties
                $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.fblm_properties.html", true);
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_PROPERTIES", $this->lng->txt("cont_lm_properties"));

                // online
                $this->tpl->setVariable("TXT_ONLINE", $this->lng->txt("cont_online"));
                $this->tpl->setVariable("CBOX_ONLINE", "cobj_online");
                $this->tpl->setVariable("VAL_ONLINE", "y");
                if ($this->object->getOnline())
                {
                        $this->tpl->setVariable("CHK_ONLINE", "checked");
                }

                // start file
                $this->tpl->setVariable("TXT_START_FILE", $this->lng->txt("cont_startfile"));
                $this->tpl->setVariable("VAL_START_FILE", $this->object->getStartFile());
                $this->tpl->setVariable("TXT_SET_START_FILE", $this->lng->txt("cont_set_start_file"));
                $this->tpl->setVariable("LINK_SET_START_FILE",
                        $this->ctrl->getLinkTargetByClass("ilfilesystemgui", "listFiles"));

                $this->tpl->setCurrentBlock("commands");
                $this->tpl->setVariable("BTN_NAME", "saveProperties");
                $this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
                $this->tpl->parseCurrentBlock();

        }

ilObjFileBasedLMGUI::saveBibItem (  ) 

save bib item (module call)

Definition at line 483 of file class.ilObjFileBasedLMGUI.php.

References saveBibItemObject().

        {
                //$this->setTabs();
                $this->saveBibItemObject($this->ctrl->getLinkTarget($this));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::saveBibItemObject ( a_target = ""  ) 

save bib item (admin call)

Definition at line 459 of file class.ilObjFileBasedLMGUI.php.

References $_GET, and $_POST.

Referenced by saveBibItem().

        {
                include_once "content/classes/class.ilBibItemGUI.php";
                $bib_gui =& new ilBibItemGUI();
                $bib_gui->setObject($this->object);
                $bibItemIndex = $_POST["bibItemIndex"] ? $_POST["bibItemIndex"] : $_GET["bibItemIndex"];
                $bibItemIndex *= 1;
                if ($bibItemIndex < 0)
                {
                        $bibItemIndex = 0;
                }
                $bibItemIndex = $bib_gui->save($bibItemIndex);

                if ($a_target == "")
                {
                        $a_target = "adm_object.php?ref_id=" . $this->object->getRefId();
                }

                $bib_gui->edit("ADM_CONTENT", "adm_content", $a_target, $bibItemIndex);
        }

Here is the caller graph for this function:

ilObjFileBasedLMGUI::saveMeta (  ) 

save meta data (called by module)

Definition at line 451 of file class.ilObjFileBasedLMGUI.php.

References saveMetaObject().

        {
                $this->saveMetaObject($this->ctrl->getLinkTarget($this, "editMeta"));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::saveMetaObject ( a_target = ""  ) 

save meta data (called by administration)

Definition at line 432 of file class.ilObjFileBasedLMGUI.php.

References $_POST, ilUtil::appendUrlParameterString(), and ilUtil::redirect().

Referenced by saveMeta().

        {
                if ($a_target == "")
                {
                        $a_target = "adm_object.php?cmd=editMeta&ref_id=".$this->object->getRefId();
                }

                include_once "classes/class.ilMetaDataGUI.php";
                $meta_gui =& new ilMetaDataGUI();
                $meta_gui->setObject($this->object);
                $meta_gui->save($_POST["meta_section"]);
                ilUtil::redirect(ilUtil::appendUrlParameterString($a_target,
                        "meta_section=" . $_POST["meta_section"]));
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjFileBasedLMGUI::saveObject (  ) 

save object public

Reimplemented from ilObjectGUI.

Definition at line 176 of file class.ilObjFileBasedLMGUI.php.

References $rbacadmin, ilObjectGUI::getReturnLocation(), ilUtil::redirect(), and sendInfo().

        {
                global $rbacadmin;

                // create and insert forum in objecttree
                $newObj = parent::saveObject();

                // setup rolefolder & default local roles
                //$roles = $newObj->initDefaultRoles();

                // ...finally assign role to creator of object
                //$rbacadmin->assignUser($roles[0], $newObj->getOwner(), "y");

                // put here object specific stuff

                // always send a message
                sendInfo($this->lng->txt("object_added"),true);

                ilUtil::redirect($this->getReturnLocation("save","adm_object.php?".$this->link_params));
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::saveProperties (  ) 

save properties

Definition at line 163 of file class.ilObjFileBasedLMGUI.php.

References $_POST, sendInfo(), and ilUtil::yn2tf().

        {
                $this->object->setOnline(ilUtil::yn2tf($_POST["cobj_online"]));
                $this->object->update();
                sendInfo($this->lng->txt("msg_obj_modified"), true);
                $this->ctrl->redirect($this, "properties");
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::setLocator ( a_tree = "",
a_id = "",
scriptname = "adm_object.php" 
)

set locator

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

References $_GET, $ilias_locator, $path, $row, $t_frame, ilObjectGUI::$tree, and ilFrameTargetInfo::_getFrame().

Referenced by executeCommand().

        {
                global $ilias_locator, $tree;
                if (!defined("ILIAS_MODULE"))
                {
                        parent::setLocator();
                }
                else
                {
                        $a_tree =& $tree;
                        $a_id = $_GET["ref_id"];

                        $this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");

                        $path = $a_tree->getPathFull($a_id);

                        // this is a stupid workaround for a bug in PEAR:IT
                        $modifier = 1;

                        if (!empty($_GET["obj_id"]))
                        {
                                $modifier = 0;
                        }

                        // ### AA 03.11.10 added new locator GUI class ###
                        $i = 1;

                        if ($this->object->getType() != "grp" && ($_GET["cmd"] == "delete" || $_GET["cmd"] == "edit"))
                        {
                                unset($path[count($path) - 1]);
                        }

                        foreach ($path as $key => $row)
                        {

                                if ($key < count($path) - $modifier)
                                {
                                        $this->tpl->touchBlock("locator_separator");
                                }

                                $this->tpl->setCurrentBlock("locator_item");
                                if ($row["child"] != $a_tree->getRootId())
                                {
                                        $this->tpl->setVariable("ITEM", $row["title"]);
                                }
                                else
                                {
                                        $this->tpl->setVariable("ITEM", $this->lng->txt("repository"));
                                }
                                if($row["type"] == "htlm")
                                {
                                        $this->tpl->setVariable("LINK_ITEM", "fblm_edit.php?ref_id=".$row["child"]);
                                }
                                else
                                {
                                        $this->tpl->setVariable("LINK_ITEM", "../repository.php?cmd=frameset&ref_id=".$row["child"]);
                                        $t_frame = ilFrameTargetInfo::_getFrame("MainContent");
                                        $this->tpl->setVariable("LINK_TARGET", " target=\"$t_frame\" ");
                                }

                                $this->tpl->parseCurrentBlock();

                                $this->tpl->setCurrentBlock("locator");

                                // ### AA 03.11.10 added new locator GUI class ###
                                // navigate locator
                                if ($row["child"] != $a_tree->getRootId())
                                {
                                        $ilias_locator->navigate($i++,$row["title"],"../repository.php?ref_id=".$row["child"],"bottom");
                                }
                                else
                                {
                                        $ilias_locator->navigate($i++,$this->lng->txt("repository"),"../repository.php?ref_id=".$row["child"],"bottom");
                                }
                        }

                        /*
                        if (DEBUG)
                        {
                                $debug = "DEBUG: <font color=\"red\">".$this->type."::".$this->id."::".$_GET["cmd"]."</font><br/>";
                        }

                        $prop_name = $this->objDefinition->getPropertyName($_GET["cmd"],$this->type);

                        if ($_GET["cmd"] == "confirmDeleteAdm")
                        {
                                $prop_name = "delete_object";
                        }*/

                        $this->tpl->setVariable("TXT_LOCATOR",$debug.$this->lng->txt("locator"));
                        $this->tpl->parseCurrentBlock();
                }

        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjFileBasedLMGUI::setStartFile ( a_file  ) 

Definition at line 258 of file class.ilObjFileBasedLMGUI.php.

        {
                $this->object->setStartFile($a_file);
                $this->object->update();
                $this->ctrl->redirectByClass("ilfilesystemgui", "listFiles");
        }

ilObjFileBasedLMGUI::setTabs (  ) 

output tabs

Definition at line 764 of file class.ilObjFileBasedLMGUI.php.

References getTabs().

Referenced by executeCommand().

        {
                $this->getTabs($this->tabs_gui);
                $this->tpl->setVariable("TABS", $this->tabs_gui->getHTML());
                $this->tpl->setVariable("HEADER", $this->object->getTitle());
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjFileBasedLMGUI::showLearningModule (  ) 

Definition at line 743 of file class.ilObjFileBasedLMGUI.php.

References ilUtil::redirect().

        {
                $dir = $this->object->getDataDirectory();
                if (($this->object->getStartFile() != "") &&
                        (@is_file($dir."/".$this->object->getStartFile())))
                {
                        ilUtil::redirect("../".$dir."/".$this->object->getStartFile());
                }
                else if (@is_file($dir."/index.html"))
                {
                        ilUtil::redirect("../".$dir."/index.html");
                }
                else if (@is_file($dir."/index.htm"))
                {
                        ilUtil::redirect("../".$dir."/index.htm");
                }
        }

Here is the call graph for this function:

ilObjFileBasedLMGUI::update (  ) 

update properties

Definition at line 250 of file class.ilObjFileBasedLMGUI.php.

References $_GET, ilObjectGUI::setReturnLocation(), and ilObjectGUI::updateObject().

        {
                $this->setReturnLocation("update", "fblm_edit.php?cmd=listFiles&ref_id=".$_GET["ref_id"].
                        "&obj_id=".$_GET["obj_id"]);
                $this->updateObject();
        }

Here is the call graph for this function:


Field Documentation

ilObjFileBasedLMGUI::$output_prepared

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


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