Public Member Functions | Data Fields

ilObjGlossaryGUI Class Reference

Inheritance diagram for ilObjGlossaryGUI:
Collaboration diagram for ilObjGlossaryGUI:

Public Member Functions

 ilObjGlossaryGUI ($a_data, $a_id=0, $a_call_by_reference=true, $a_prepare_output=true)
 Constructor public.
executeCommand ()
 execute command
 assignObject ()
 createObject ()
 form for new content object creation
 importObject ()
 import new object form
 saveObject ()
 save new content object to db
 importFileObject ()
 display status information or report errors messages in case of error
 viewObject ()
 list childs of current object
 properties ()
 edit properties of object (admin form)
 saveProperties ()
 save properties
 frameset ()
 glossary edit frameset
 quickList ()
 quick term list
 listTerms ()
 list terms
 addTerm ()
 add term
 moveDefinitionUp ()
 move a definiton up
 moveDefinitionDown ()
 move a definiton down
 confirmDefinitionDeletion ()
 deletion confirmation screen
 cancelObject ($in_rep=false)
 cancel action and go back to previous page public
 cancelDefinitionDeletion ()
 deleteDefinition ()
 editTerm ()
 edit term
 updateTerm ()
 update term
 exportList ()
 export ()
 export content object
 exportHTML ()
 create html package
 downloadExportFile ()
 download export file
 publishExportFile ()
 download export file
 viewExportLog ()
 confirmDeleteExportFile ()
 confirmation screen for export file deletion
 cancelDeleteExportFile ()
 cancel deletion of export files
 deleteExportFile ()
 delete export files
 confirmTermDeletion ()
 confirm term deletion
 cancelTermDeletion ()
 cancel deletion of object
 deleteTerms ()
 delete selected terms
 setLocator ($a_tree="", $a_id="")
 set Locator
 perm ()
 edit permissions
 permSave ()
 save permissions
 info ()
 info permissions
 addRole ()
 add a local role
 owner ()
 show owner
 view ()
 view content
 create ()
 create new (subobject) in glossary
 saveTerm ()
 addDefinition ()
 add definition
 getTemplate ()
 setTabs ()
 output tabs
 getTabs (&$tabs_gui)
 get tabs

Data Fields

 $admin_tabs
 $mode
 $term

Detailed Description

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


Member Function Documentation

ilObjGlossaryGUI::addDefinition (  ) 

add definition

Definition at line 1506 of file class.ilObjGlossaryGUI.php.

References $_POST, $term, and ilUtil::stripSlashes().

        {
                if (count($_POST["id"]) < 1)
                {
                        $this->ilias->raiseError($this->lng->txt("cont_select_term"),$this->ilias->error_obj->MESSAGE);
                }

                if (count($_POST["id"]) > 1)
                {
                        $this->ilias->raiseError($this->lng->txt("cont_select_max_one_term"),$this->ilias->error_obj->MESSAGE);
                }

                // add term
                include_once ("content/classes/class.ilGlossaryTerm.php");
                $term =& new ilGlossaryTerm($_POST["id"][0]);

                // add first definition
                $def =& new ilGlossaryDefinition();
                $def->setTermId($term->getId());
                $def->setTitle(ilUtil::stripSlashes($term->getTerm()));
                $def->create();

                $this->ctrl->setParameterByClass("ilpageobjectgui", "term_id", $term->getId());
                $this->ctrl->setParameterByClass("ilpageobjectgui", "def", $def->getId());
                $this->ctrl->redirectByClass(array("ilglossarytermgui",
                        "iltermdefinitioneditorgui", "ilpageobjectgui"), "view");
                
        }

Here is the call graph for this function:

ilObjGlossaryGUI::addRole (  ) 

add a local role

Definition at line 1448 of file class.ilObjGlossaryGUI.php.

References exit.

        {
                echo "Deprecated"; exit;
                
                //$this->setReturnLocation("addRole", "glossary_edit.php?ref_id=".$this->object->getRefId()."&cmd=perm");
                //$this->addRoleObject();
        }

ilObjGlossaryGUI::addTerm (  ) 

add term

Definition at line 808 of file class.ilObjGlossaryGUI.php.

References $_POST, $_SESSION, $term, and ilUtil::stripSlashes().

        {
                // add term
                include_once ("content/classes/class.ilGlossaryTerm.php");
                $term =& new ilGlossaryTerm();
                $term->setGlossary($this->object);
                $term->setTerm(ilUtil::stripSlashes($_POST["new_term"]));
                $term->setLanguage($_POST["term_language"]);
                $_SESSION["il_text_lang_".$_GET["ref_id"]] = $_POST["term_language"];
                $term->create();

                // add first definition
                $def =& new ilGlossaryDefinition();
                $def->setTermId($term->getId());
                $def->setTitle(ilUtil::stripSlashes($_POST["new_term"]));
                $def->create();

                $this->ctrl->setParameterByClass("ilpageobjectgui", "term_id", $term->getId());
                $this->ctrl->setParameterByClass("ilpageobjectgui", "def", $def->getId());
                $this->ctrl->redirectByClass(array("ilglossarytermgui",
                        "iltermdefinitioneditorgui", "ilpageobjectgui"), "view");
        }

Here is the call graph for this function:

ilObjGlossaryGUI::assignObject (  ) 

Reimplemented from ilObjectGUI.

Definition at line 168 of file class.ilObjGlossaryGUI.php.

        {
                include_once("content/classes/class.ilObjGlossary.php");

                $this->object =& new ilObjGlossary($this->id, true);
        }

ilObjGlossaryGUI::cancelDefinitionDeletion (  ) 

Definition at line 920 of file class.ilObjGlossaryGUI.php.

        {
                $this->ctrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::cancelDeleteExportFile (  ) 

cancel deletion of export files

Definition at line 1265 of file class.ilObjGlossaryGUI.php.

        {
                session_unregister("ilExportFiles");
                $this->ctrl->redirect($this, "exportList");
        }

ilObjGlossaryGUI::cancelObject ( in_rep = false  ) 

cancel action and go back to previous page public

Reimplemented from ilObjectGUI.

Definition at line 913 of file class.ilObjGlossaryGUI.php.

References $_GET, ilUtil::redirect(), and sendInfo().

        {
                sendInfo($this->lng->txt("msg_cancel"),true);
                ilUtil::redirect("repository.php?cmd=frameset&ref_id=".$_GET["ref_id"]);
                //$this->ctrl->redirectByClass("ilrepositorygui", "frameset");
        }

Here is the call graph for this function:

ilObjGlossaryGUI::cancelTermDeletion (  ) 

cancel deletion of object

public

Definition at line 1357 of file class.ilObjGlossaryGUI.php.

References sendInfo().

        {
                session_unregister("term_delete");
                sendInfo($this->lng->txt("msg_cancel"),true);
                $this->ctrl->redirect($this, "listTerms");
        }

Here is the call graph for this function:

ilObjGlossaryGUI::confirmDefinitionDeletion (  ) 

deletion confirmation screen

Definition at line 860 of file class.ilObjGlossaryGUI.php.

References $_GET, $output, $term, ilObjStyleSheet::getContentStylePath(), ilObjStyleSheet::getSyntaxStylePath(), and sendInfo().

        {
                //$this->getTemplate();
                //$this->displayLocator();
                //$this->setTabs();

                $term = new ilGlossaryTerm($_GET["term_id"]);

                // content style
                $this->tpl->setCurrentBlock("ContentStyle");
                $this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET",
                        ilObjStyleSheet::getContentStylePath(0));
                $this->tpl->parseCurrentBlock();

                // syntax style
                $this->tpl->setCurrentBlock("SyntaxStyle");
                $this->tpl->setVariable("LOCATION_SYNTAX_STYLESHEET",
                        ilObjStyleSheet::getSyntaxStylePath());
                $this->tpl->parseCurrentBlock();


                //$this->tpl->setVariable("HEADER",
                //      $this->lng->txt("cont_term").": ".$term->getTerm());

                $this->tpl->addBlockfile("ADM_CONTENT", "def_list", "tpl.glossary_definition_delete.html", true);
                sendInfo($this->lng->txt("info_delete_sure"));

                $this->tpl->setVariable("TXT_TERM", $term->getTerm());

                $definition =& new ilGlossaryDefinition($_GET["def"]);
                $page =& new ilPageObject("gdf", $definition->getId());
                $page_gui =& new ilPageObjectGUI($page);
                $page_gui->setTemplateOutput(false);
                $page_gui->setSourcecodeDownloadScript("glossary_presentation.php?ref_id=".$_GET["ref_id"]);
                $output = $page_gui->preview();

                $this->tpl->setCurrentBlock("definition");
                $this->tpl->setVariable("PAGE_CONTENT", $output);
                $this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
                $this->tpl->setVariable("LINK_CANCEL",
                        $this->ctrl->getLinkTarget($this, "cancelDefinitionDeletion"));
                $this->tpl->setVariable("TXT_CONFIRM", $this->lng->txt("confirm"));
                $this->ctrl->setParameter($this, "def", $definition->getId());
                $this->tpl->setVariable("LINK_CONFIRM",
                        $this->ctrl->getLinkTarget($this, "deleteDefinition"));
                $this->tpl->parseCurrentBlock();
        }

Here is the call graph for this function:

ilObjGlossaryGUI::confirmDeleteExportFile (  ) 

confirmation screen for export file deletion

Definition at line 1215 of file class.ilObjGlossaryGUI.php.

References $_POST, $_SESSION, $counter, $file, ilUtil::getImagePath(), sendInfo(), setTabs(), and ilUtil::switchColor().

        {
                if(!isset($_POST["file"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_checkbox"),$this->ilias->error_obj->MESSAGE);
                }

                $this->setTabs();

                // SAVE POST VALUES
                $_SESSION["ilExportFiles"] = $_POST["file"];

                $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.confirm_deletion.html", true);

                sendInfo($this->lng->txt("info_delete_sure"));

                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));

                // BEGIN TABLE HEADER
                $this->tpl->setCurrentBlock("table_header");
                $this->tpl->setVariable("TEXT",$this->lng->txt("objects"));
                $this->tpl->parseCurrentBlock();

                // BEGIN TABLE DATA
                $counter = 0;
                foreach($_POST["file"] as $file)
                {
                                $file = explode(":", $file);
                                $this->tpl->setCurrentBlock("table_row");
                                $this->tpl->setVariable("CSS_ROW",ilUtil::switchColor(++$counter,"tblrow1","tblrow2"));
                                $this->tpl->setVariable("TEXT_CONTENT", $file[1]." (".$file[0].")");
                                $this->tpl->parseCurrentBlock();
                }

                // cancel/confirm button
                $this->tpl->setVariable("IMG_ARROW",ilUtil::getImagePath("arrow_downright.gif"));
                $buttons = array( "cancelDeleteExportFile"  => $this->lng->txt("cancel"),
                        "deleteExportFile"  => $this->lng->txt("confirm"));
                foreach ($buttons as $name => $value)
                {
                        $this->tpl->setCurrentBlock("operation_btn");
                        $this->tpl->setVariable("BTN_NAME",$name);
                        $this->tpl->setVariable("BTN_VALUE",$value);
                        $this->tpl->parseCurrentBlock();
                }
        }

Here is the call graph for this function:

ilObjGlossaryGUI::confirmTermDeletion (  ) 

confirm term deletion

Definition at line 1298 of file class.ilObjGlossaryGUI.php.

References $_POST, $_SESSION, $counter, $id, $key, $term, ilUtil::getImagePath(), sendInfo(), and ilUtil::switchColor().

        {
                //$this->prepareOutput();
                if (!isset($_POST["id"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_checkbox"),$this->ilias->error_obj->MESSAGE);
                }

                // save values to
                $_SESSION["term_delete"] = $_POST["id"];

                $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.obj_confirm.html");

                sendInfo($this->lng->txt("info_delete_sure"));
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));

                // output table header
                $cols = array("cont_term");
                foreach ($cols as $key)
                {
                        $this->tpl->setCurrentBlock("table_header");
                        $this->tpl->setVariable("TEXT",$this->lng->txt($key));
                        $this->tpl->parseCurrentBlock();
                }

                foreach($_POST["id"] as $id)
                {
                        $term = new ilGlossaryTerm($id);

                        // output title
                        $this->tpl->setCurrentBlock("table_cell");
                        $this->tpl->setVariable("TEXT_CONTENT", $term->getTerm());
                        $this->tpl->parseCurrentBlock();

                        // output table row
                        $this->tpl->setCurrentBlock("table_row");
                        $this->tpl->setVariable("CSS_ROW",ilUtil::switchColor(++$counter,"tblrow1","tblrow2"));
                        $this->tpl->parseCurrentBlock();
                }

                // cancel and confirm button
                $buttons = array( "cancelTermDeletion"  => $this->lng->txt("cancel"),
                        "deleteTerms"  => $this->lng->txt("confirm"));
                $this->tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));
                foreach($buttons as $name => $value)
                {
                        $this->tpl->setCurrentBlock("operation_btn");
                        $this->tpl->setVariable("BTN_NAME",$name);
                        $this->tpl->setVariable("BTN_VALUE",$value);
                        $this->tpl->parseCurrentBlock();
                }

        }

Here is the call graph for this function:

ilObjGlossaryGUI::create (  ) 

create new (subobject) in glossary

Definition at line 1479 of file class.ilObjGlossaryGUI.php.

References $_POST.

        {
                switch($_POST["new_type"])
                {
                        case "term":
                                $term_gui =& new ilGlossaryTermGUI();
                                $term_gui->create();
                                break;
                }
        }

ilObjGlossaryGUI::createObject (  ) 

form for new content object creation

Reimplemented from ilObjectGUI.

Definition at line 179 of file class.ilObjGlossaryGUI.php.

References $_GET, $_POST, $_SESSION, ilObjectGUI::$data, $key, $rbacsystem, ilFrameTargetInfo::_getFrame(), formSelect(), ilObjectGUI::getTemplateFile(), ilUtil::prepareFormOutput(), and ilUtil::stripSlashes().

Referenced by importObject().

        {
                global $rbacsystem;

                $new_type = $_POST["new_type"] ? $_POST["new_type"] : $_GET["new_type"];

                if (!$rbacsystem->checkAccess("create", $_GET["ref_id"], $new_type))
                {
                        $this->ilias->raiseError($this->lng->txt("permission_denied"),$this->ilias->error_obj->MESSAGE);
                }
                
                $stati  = array(
                                                "none"=>$this->lng->txt("glo_mode_normal"),
                                                "level"=>$this->lng->txt("glo_mode_level"),
                                                "subtree"=>$this->lng->txt("glo_mode_subtree")
                                                );

                $glo_type = $_SESSION["error_post_vars"]["glo_type"];
                
                $opts   = ilUtil::formSelect("none","glo_mode",$stati,false,true);

                // fill in saved values in case of error
                $data = array();
                $data["fields"] = array();
                $data["fields"]["title"] = ilUtil::prepareFormOutput($_SESSION["error_post_vars"]["Fobject"]["title"],true);
                $data["fields"]["desc"] = ilUtil::stripSlashes($_SESSION["error_post_vars"]["Fobject"]["desc"]);

                $this->getTemplateFile("create", $new_type);

                foreach ($data["fields"] as $key => $val)
                {
                        $this->tpl->setVariable("TXT_".strtoupper($key), $this->lng->txt($key));
                        $this->tpl->setVariable(strtoupper($key), $val);

                        if ($this->prepare_output)
                        {
                                $this->tpl->parseCurrentBlock();
                        }
                }

                $this->ctrl->setParameter($this, "new_type", $new_type);
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));

                //$this->tpl->setVariable("FORMACTION", $this->getFormAction("save","adm_object.php?cmd=gateway&ref_id=".
                //                                                                                                                         $_GET["ref_id"]."&new_type=".$new_type));
                $this->tpl->setVariable("TXT_HEADER", $this->lng->txt($new_type."_new"));
                $this->tpl->setVariable("TXT_CANCEL", $this->lng->txt("cancel"));
                $this->tpl->setVariable("TXT_SUBMIT", $this->lng->txt($new_type."_add"));
                $this->tpl->setVariable("CMD_SUBMIT", "save");
                $this->tpl->setVariable("TARGET", ' target="'.
                        ilFrameTargetInfo::_getFrame("MainContent").'" ');
                $this->tpl->setVariable("TXT_REQUIRED_FLD", $this->lng->txt("required_field"));
                
                $this->tpl->setVariable("SELECT_GLO_MODE", $opts);
                $this->tpl->setVariable("TXT_GLO_MODE", $this->lng->txt("glo_mode"));
                $this->tpl->setVariable("TXT_GLO_MODE_DESC", $this->lng->txt("glo_mode_desc"));

                $this->tpl->setVariable("TXT_IMPORT_GLO", $this->lng->txt("import_glossary"));
                $this->tpl->setVariable("TXT_GLO_FILE", $this->lng->txt("glo_upload_file"));
                $this->tpl->setVariable("TXT_IMPORT", $this->lng->txt("import"));
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjGlossaryGUI::deleteDefinition (  ) 

Definition at line 926 of file class.ilObjGlossaryGUI.php.

References $_GET.

        {
                $definition =& new ilGlossaryDefinition($_GET["def"]);
                $definition->delete();
                $this->ctrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::deleteExportFile (  ) 

delete export files

Definition at line 1274 of file class.ilObjGlossaryGUI.php.

References $_SESSION, $file, and ilUtil::delDir().

        {
                foreach($_SESSION["ilExportFiles"] as $file)
                {
                        $file = explode(":", $file);
                        $export_dir = $this->object->getExportDirectory($file[0]);
                        
                        $exp_file = $export_dir."/".$file[1];
                        $exp_dir = $export_dir."/".substr($file, 0, strlen($file) - 4);
                        if (@is_file($exp_file))
                        {
                                unlink($exp_file);
                        }
                        if (@is_dir($exp_dir))
                        {
                                ilUtil::delDir($exp_dir);
                        }
                }
                $this->ctrl->redirect($this, "exportList");
        }

Here is the call graph for this function:

ilObjGlossaryGUI::deleteTerms (  ) 

delete selected terms

Definition at line 1367 of file class.ilObjGlossaryGUI.php.

References $_SESSION, $id, and $term.

        {
                foreach($_SESSION["term_delete"] as $id)
                {
                        $term = new ilGlossaryTerm($id);
                        $term->delete();
                }
                session_unregister("term_delete");
                $this->ctrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::downloadExportFile (  ) 

download export file

Definition at line 1139 of file class.ilObjGlossaryGUI.php.

References $_POST, $file, and ilUtil::deliverFile().

        {
                if(!isset($_POST["file"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_checkbox"),$this->ilias->error_obj->MESSAGE);
                }

                if (count($_POST["file"]) > 1)
                {
                        $this->ilias->raiseError($this->lng->txt("cont_select_max_one_item"),$this->ilias->error_obj->MESSAGE);
                }

                $file = explode(":", $_POST["file"][0]);
                $export_dir = $this->object->getExportDirectory($file[0]);
                ilUtil::deliverFile($export_dir."/".$file[1],
                        $file[1]);
        }

Here is the call graph for this function:

ilObjGlossaryGUI::editTerm (  ) 

edit term

Definition at line 936 of file class.ilObjGlossaryGUI.php.

        {
                /*
                $term = new ilGlossaryTerm($_GET["term_id"]);
                //$this->tpl->setVariable("HEADER", $this->lng->txt("cont_term").": ".$term->getTerm());

                // load template for table
                $this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.glossary_term_edit.html", true);
                $this->ctrl->setParameter($this, "term_id", $_GET["term_id"]);
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_ACTION", $this->lng->txt("cont_edit_term"));
                $this->tpl->setVariable("TXT_TERM", $this->lng->txt("cont_term"));
                $this->tpl->setVariable("INPUT_TERM", "term");
                $this->tpl->setVariable("VALUE_TERM", htmlspecialchars($term->getTerm()));
                $this->tpl->setVariable("TXT_LANGUAGE", $this->lng->txt("language"));
                $lang = ilMetaData::getLanguages();
                $select_language = ilUtil::formSelect ($term->getLanguage(),"term_language",$lang,false,true);
                $this->tpl->setVariable("SELECT_LANGUAGE", $select_language);
                $this->tpl->setVariable("BTN_NAME", "updateTerm");
                $this->tpl->setVariable("BTN_TEXT", $this->lng->txt("save"));
                */
        }

& ilObjGlossaryGUI::executeCommand (  ) 

execute command

Reimplemented from ilObjectGUI.

Definition at line 74 of file class.ilObjGlossaryGUI.php.

References $_GET, $_POST, $cmd, $ilAccess, ilObjectGUI::$lng, ilObjectGUI::getCreationMode(), getTemplate(), ilObjectGUI::prepareOutput(), ilObjectGUI::setLocator(), and setTabs().

        {
                global $lng, $ilAccess;
                
                $cmd = $this->ctrl->getCmd();
                $next_class = $this->ctrl->getNextClass($this);

                switch ($next_class)
                {
                        case 'ilmdeditorgui':
                                $this->getTemplate();
                                $this->setTabs();
                                $this->setLocator();

                                include_once 'Services/MetaData/classes/class.ilMDEditorGUI.php';

                                $md_gui =& new ilMDEditorGUI($this->object->getId(), 0, $this->object->getType());
                                $md_gui->addObserver($this->object,'MDUpdateListener','General');

                                $this->ctrl->forwardCommand($md_gui);
                                break;

                        case "ilglossarytermgui":
                                $this->ctrl->setReturn($this, "listTerms");
                                $term_gui =& new ilGlossaryTermGUI($_GET["term_id"]);
                                $term_gui->setGlossary($this->object);
                                //$ret =& $term_gui->executeCommand();
                                $ret =& $this->ctrl->forwardCommand($term_gui);
                                break;
                                
                        case 'ilpermissiongui':
                                if (strtolower($_GET["baseClass"]) == "iladministrationgui")
                                {
                                        $this->prepareOutput();
                                }
                                else
                                {
                                        $this->getTemplate();
                                        $this->setTabs();
                                        $this->setLocator();
                                }
                                include_once("./classes/class.ilPermissionGUI.php");
                                $perm_gui =& new ilPermissionGUI($this);
                                $ret =& $this->ctrl->forwardCommand($perm_gui);
                                break;

                        default:
                                $cmd = $this->ctrl->getCmd("frameset");

                                if (($cmd == "create") && ($_POST["new_type"] == "term"))
                                {
                                        $this->ctrl->setCmd("create");
                                        $this->ctrl->setCmdClass("ilGlossaryTermGUI");
                                        $ret =& $this->executeCommand();
                                        return;
                                }
                                else
                                {
                                        if (!in_array($cmd, array("frameset", "quickList")))
                                        {
                                                if (strtolower($_GET["baseClass"]) == "iladministrationgui" ||
                                                        $this->getCreationMode() == true)
                                                {
                                                        $this->prepareOutput();
                                                        $cmd.= "Object";
                                                }
                                                else
                                                {
                                                        $this->getTemplate();
                                                        $this->setTabs();
                                                        $this->setLocator();
                                                }
                                        }
                                        $ret =& $this->$cmd();
                                }
                                break;
                }

                if (!in_array($cmd, array("frameset", "quickList")))
                {
                        if (strtolower($_GET["baseClass"]) != "iladministrationgui")
                        {
                                if (!$this->getCreationMode())
                                {
                                        $this->tpl->show();
                                }
                        }
                }
                else
                {
                        $this->tpl->show(false);
                }
        }

Here is the call graph for this function:

ilObjGlossaryGUI::export (  ) 

export content object

Definition at line 1115 of file class.ilObjGlossaryGUI.php.

        {
                require_once("content/classes/class.ilGlossaryExport.php");
                $glo_exp = new ilGlossaryExport($this->object);
                $glo_exp->buildExportFile();
                $this->ctrl->redirect($this, "exportList");
        }

ilObjGlossaryGUI::exportHTML (  ) 

create html package

Definition at line 1126 of file class.ilObjGlossaryGUI.php.

        {
                require_once("content/classes/class.ilGlossaryExport.php");
                $glo_exp = new ilGlossaryExport($this->object, "html");
                $glo_exp->buildExportFile();
//echo $this->tpl->get();
                $this->ctrl->redirect($this, "exportList");
        }

ilObjGlossaryGUI::exportList (  ) 

Definition at line 978 of file class.ilObjGlossaryGUI.php.

References $_GET, $num, $tbl, ilObjectGUI::$tree, ilUtil::getImagePath(), and ilUtil::switchColor().

        {
                global $tree;

                //$this->setTabs();

                //add template for view button
                $this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");

                // create export file button (xml)
                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK", $this->ctrl->getLinkTarget($this, "export"));
                $this->tpl->setVariable("BTN_TXT", $this->lng->txt("cont_create_export_file_xml"));
                $this->tpl->parseCurrentBlock();

                // create export file button (html)
                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK", $this->ctrl->getLinkTarget($this, "exportHTML"));
                $this->tpl->setVariable("BTN_TXT", $this->lng->txt("cont_create_export_file_html"));
                $this->tpl->parseCurrentBlock();

                // view last export log button
                if (is_file($this->object->getExportDirectory()."/export.log"))
                {
                        $this->tpl->setCurrentBlock("btn_cell");
                        $this->tpl->setVariable("BTN_LINK", $this->ctrl->getLinkTarget($this, "viewExportLog"));
                        $this->tpl->setVariable("BTN_TXT", $this->lng->txt("cont_view_last_export_log"));
                        $this->tpl->parseCurrentBlock();
                }


                $export_dir = $this->object->getExportDirectory();

                $export_files = $this->object->getExportFiles();
                
                // create table
                require_once("classes/class.ilTableGUI.php");
                $tbl = new ilTableGUI();

                // load files templates
                $this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.table.html");

                // load template for table content data
                $this->tpl->addBlockfile("TBL_CONTENT", "tbl_content", "tpl.glo_export_file_row.html", true);

                $num = 0;

                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));

                $tbl->setTitle($this->lng->txt("cont_export_files"));

                $tbl->setHeaderNames(array("", $this->lng->txt("type"),
                        $this->lng->txt("cont_file"),
                        $this->lng->txt("cont_size"), $this->lng->txt("date") ));

                $cols = array("", "type", "file", "size", "date");
                $header_params = array("ref_id" => $_GET["ref_id"],
                        "cmd" => "exportList", "cmdClass" => get_class($this));
                $tbl->setHeaderVars($cols, $header_params);
                $tbl->setColumnWidth(array("1%", "9%", "40%", "25%", "25%"));
                $tbl->disable("sort");

                // control
                $tbl->setOrderColumn($_GET["sort_by"]);
                $tbl->setOrderDirection($_GET["sort_order"]);
                $tbl->setLimit($_GET["limit"]);
                $tbl->setOffset($_GET["offset"]);
                $tbl->setMaxCount($this->maxcount);             // ???

                $this->tpl->setVariable("COLUMN_COUNTS", 5);

                // delete button
                $this->tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));
                $this->tpl->setCurrentBlock("tbl_action_btn");
                $this->tpl->setVariable("BTN_NAME", "confirmDeleteExportFile");
                $this->tpl->setVariable("BTN_VALUE", $this->lng->txt("delete"));
                $this->tpl->parseCurrentBlock();

                $this->tpl->setCurrentBlock("tbl_action_btn");
                $this->tpl->setVariable("BTN_NAME", "downloadExportFile");
                $this->tpl->setVariable("BTN_VALUE", $this->lng->txt("download"));
                $this->tpl->parseCurrentBlock();

                // public access
                $this->tpl->setCurrentBlock("tbl_action_btn");
                $this->tpl->setVariable("BTN_NAME", "publishExportFile");
                $this->tpl->setVariable("BTN_VALUE", $this->lng->txt("cont_public_access"));
                $this->tpl->parseCurrentBlock();

                // footer
                $tbl->setFooter("tblfooter",$this->lng->txt("previous"),$this->lng->txt("next"));
                //$tbl->disable("footer");

                $tbl->setMaxCount(count($export_files));
                $export_files = array_slice($export_files, $_GET["offset"], $_GET["limit"]);

                $tbl->render();
                if(count($export_files) > 0)
                {
                        $i=0;
                        foreach($export_files as $exp_file)
                        {
                                $this->tpl->setCurrentBlock("tbl_content");
                                $this->tpl->setVariable("TXT_FILENAME", $exp_file["file"]);

                                $css_row = ilUtil::switchColor($i++, "tblrow1", "tblrow2");
                                $this->tpl->setVariable("CSS_ROW", $css_row);

                                $this->tpl->setVariable("TXT_SIZE", $exp_file["size"]);

                                $public_str = ($exp_file["file"] == $this->object->getPublicExportFile($exp_file["type"]))
                                        ? " <b>(".$this->lng->txt("public").")<b>"
                                        : "";
                                $this->tpl->setVariable("TXT_TYPE", $exp_file["type"].$public_str);
                                $this->tpl->setVariable("CHECKBOX_ID", $exp_file["type"].":".$exp_file["file"]);

                                $file_arr = explode("__", $exp_file["file"]);
                                $this->tpl->setVariable("TXT_DATE", date("Y-m-d H:i:s",$file_arr[0]));

                                $this->tpl->parseCurrentBlock();
                        }
                } //if is_array
                else
                {
                        $this->tpl->setCurrentBlock("notfound");
                        $this->tpl->setVariable("TXT_OBJECT_NOT_FOUND", $this->lng->txt("obj_not_found"));
                        $this->tpl->setVariable("NUM_COLS", 3);
                        $this->tpl->parseCurrentBlock();
                }

                $this->tpl->parseCurrentBlock();
        }

Here is the call graph for this function:

ilObjGlossaryGUI::frameset (  ) 

glossary edit frameset

Definition at line 486 of file class.ilObjGlossaryGUI.php.

        {
                $this->tpl = new ilTemplate("tpl.glossary_frameset.html", true, true, "content");
                $this->tpl->setVariable("HREF_EDITOR", $this->ctrl->getLinkTarget($this, "listTerms"));
                $this->tpl->setVariable("HREF_EXPLORER", $this->ctrl->getLinkTarget($this, "quickList"));
        }

ilObjGlossaryGUI::getTabs ( &$  tabs_gui  ) 

get tabs

Reimplemented from ilObjectGUI.

Definition at line 1584 of file class.ilObjGlossaryGUI.php.

References $_GET, and $rbacsystem.

Referenced by setTabs().

        {
                global $rbacsystem;

                // list terms
                $force_active = ($_GET["cmd"] == "" || $_GET["cmd"] == "listTerms")
                                ? true
                                : false;
                $tabs_gui->addTarget("cont_terms",
                        $this->ctrl->getLinkTarget($this, "listTerms"), array("listTerms", ""),
                        get_class($this), "", $force_active);

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

                // meta data
                $tabs_gui->addTarget("meta_data",
                         $this->ctrl->getLinkTargetByClass('ilmdeditorgui','listSection'),
                         "", "ilmdeditorgui");

                // export
                $tabs_gui->addTarget("export",
                         $this->ctrl->getLinkTarget($this, "exportList"),
                         array("exportList", "viewExportLog"), get_class($this));

                // permissions
                if ($rbacsystem->checkAccess('edit_permission',$this->object->getRefId()))
                {
                        /*$tabs_gui->addTarget("permission_settings",
                                $this->ctrl->getLinkTarget($this, "perm"),
                                array("perm", "info"),
                                get_class($this));
                                */
                        $tabs_gui->addTarget("perm_settings",
                                $this->ctrl->getLinkTargetByClass(array(get_class($this),'ilpermissiongui'), "perm"), array("perm","info","owner"), 'ilpermissiongui');

                }
        }

Here is the caller graph for this function:

ilObjGlossaryGUI::getTemplate (  ) 

Definition at line 1535 of file class.ilObjGlossaryGUI.php.

References $_GET, ilGlossaryTerm::_lookGlossaryTerm(), ilUtil::getImagePath(), and sendInfo().

Referenced by executeCommand().

        {
                $this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
                $this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");

                $title = $this->object->getTitle();

                // catch feedback message
                sendInfo();

                if ($_GET["term_id"] > 0)
                {
                        //$this->tpl->setCurrentBlock("header_image");
                        //$this->tpl->setVariable("IMG_HEADER", ilUtil::getImagePath("icon_glo_b.gif"));
                        //$this->tpl->parseCurrentBlock();
                        $this->tpl->setVariable("HEADER", $this->lng->txt("term").": ".
                                ilGlossaryTerm::_lookGlossaryTerm($_GET["term_id"]));
                }
                else
                {
                        $this->tpl->setCurrentBlock("header_image");
                        $this->tpl->setVariable("IMG_HEADER", ilUtil::getImagePath("icon_glo_b.gif"));
                        $this->tpl->parseCurrentBlock();
                        $this->tpl->setVariable("HEADER", $this->lng->txt("glo").": ".$title);
                }

                //$this->setAdminTabs($_POST["new_type"]);
                //$this->setLocator();

        }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Constructor public.

Definition at line 55 of file class.ilObjGlossaryGUI.php.

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

        {
                global $ilCtrl, $lng;

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

                $this->type = "glo";
                parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, false);
                //if ($a_prepare_output)
                //{
                //      $this->prepareOutput();
                //}
        }

Here is the call graph for this function:

ilObjGlossaryGUI::importFileObject (  ) 

display status information or report errors messages in case of error

public

Definition at line 293 of file class.ilObjGlossaryGUI.php.

References $_GET, $file, $rbacsystem, ilObject::_writeImportId(), ilUtil::delDir(), ilUtil::moveUploadedFile(), ilUtil::redirect(), sendInfo(), and ilUtil::unzip().

        {
                global $_FILES, $rbacsystem;

                // check if file was uploaded
                $source = $_FILES["xmldoc"]["tmp_name"];
                if (($source == 'none') || (!$source))
                {
                        $this->ilias->raiseError($this->lng->txt("msg_no_file"),$this->ilias->error_obj->MESSAGE);
                }
                // check create permission
                /*
                if (!$rbacsystem->checkAccess("create", $_GET["ref_id"], $_GET["new_type"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_create_permission"), $this->ilias->error_obj->WARNING);
                }*/

                // check correct file type
                // check correct file type
                $info = pathinfo($_FILES["xmldoc"]["name"]);
                if (strtolower($info["extension"]) != "zip")
                {
                        $this->ilias->raiseError($this->lng->txt("cont_no_zip_file"),
                                $this->ilias->error_obj->MESSAGE);
                }

                // create and insert object in objecttree
                include_once("content/classes/class.ilObjGlossary.php");
                $newObj = new ilObjGlossary();
                $newObj->setType($_GET["new_type"]);
                $newObj->setTitle($_FILES["xmldoc"]["name"]);
                $newObj->create(true);
                $newObj->createReference();
                $newObj->putInTree($_GET["ref_id"]);
                $newObj->setPermissions($_GET["ref_id"]);
                $newObj->notify("new",$_GET["ref_id"],$_GET["parent_non_rbac_id"],$_GET["ref_id"],$newObj->getRefId());

                // create import directory
                $newObj->createImportDirectory();

                // copy uploaded file to import directory
                $file = pathinfo($_FILES["xmldoc"]["name"]);
                $full_path = $newObj->getImportDirectory()."/".$_FILES["xmldoc"]["name"];
                
                ilUtil::moveUploadedFile($_FILES["xmldoc"]["tmp_name"],
                        $_FILES["xmldoc"]["name"], $full_path);
                
                // unzip file
                ilUtil::unzip($full_path);

                // determine filename of xml file
                $subdir = basename($file["basename"],".".$file["extension"]);
                $xml_file = $newObj->getImportDirectory()."/".$subdir."/".$subdir.".xml";

                // check whether subdirectory exists within zip file
                if (!is_dir($newObj->getImportDirectory()."/".$subdir))
                {
                        $this->ilias->raiseError(sprintf($this->lng->txt("cont_no_subdir_in_zip"), $subdir),
                                $this->ilias->error_obj->MESSAGE);
                }

                // check whether xml file exists within zip file
                if (!is_file($xml_file))
                {
                        $this->ilias->raiseError(sprintf($this->lng->txt("cont_zip_file_invalid"), $subdir."/".$subdir.".xml"),
                                $this->ilias->error_obj->MESSAGE);
                }

                include_once ("content/classes/class.ilContObjParser.php");
                $contParser = new ilContObjParser($newObj, $xml_file, $subdir);
                $contParser->startParsing();
                ilObject::_writeImportId($newObj->getId(), $newObj->getImportId());

                // delete import directory
                ilUtil::delDir($newObj->getImportDirectory());

                sendInfo($this->lng->txt("glo_added"),true);
                ilUtil::redirect("ilias.php?baseClass=ilGlossaryEditorGUI&ref_id=".$newObj->getRefId());
                //ilUtil::redirect($this->getReturnLocation("save","adm_object.php?".$this->link_params));
        }

Here is the call graph for this function:

ilObjGlossaryGUI::importObject (  ) 

import new object form

public

Reimplemented from ilObjectGUI.

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

References createObject().

        {
                $this->createObject();
        }

Here is the call graph for this function:

ilObjGlossaryGUI::info (  ) 

info permissions

Definition at line 1438 of file class.ilObjGlossaryGUI.php.

References exit.

        {
                echo "Deprecated"; exit;
                
                //$this->infoObject();
        }

ilObjGlossaryGUI::listTerms (  ) 

list terms

Definition at line 610 of file class.ilObjGlossaryGUI.php.

References $_GET, $_SESSION, $ilUser, $key, $lang, $num, $tbl, $term, formSelect(), ilGlossaryDefinition::getDefinitionList(), ilMetaData::getLanguages(), ilObjectGUI::setActions(), ilObjectGUI::showActions(), ilUtil::switchColor(), and ilPCParagraph::xml2output().

        {
                global $ilUser;

                //$this->getTemplate();
                //$this->setTabs();
                //$this->setLocator();
                $this->lng->loadLanguageModule("meta");
                include_once "./classes/class.ilTableGUI.php";


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

                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK", "content/glossary_presentation.php?cmd=listTerms&ref_id=".$this->object->getRefID());
                $this->tpl->setVariable("BTN_TARGET"," target=\"bottom\" ");
                $this->tpl->setVariable("BTN_TXT",$this->lng->txt("view"));
                $this->tpl->parseCurrentBlock();

                // glossary term list template
                $this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.glossary_term_list.html", true);
                $this->tpl->setVariable("FORMACTION1", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_TERM", $this->lng->txt("cont_term"));
                $this->tpl->setVariable("TXT_ADD2", $this->lng->txt("add"));
                $this->tpl->setVariable("TXT_LANGUAGE", $this->lng->txt("language"));
                $lang = ilMetaData::getLanguages();

                if ($_SESSION["il_text_lang_".$_GET["ref_id"]] != "")
                {
                        $s_lang = $_SESSION["il_text_lang_".$_GET["ref_id"]];
                }
                else
                {
                        $s_lang = $ilUser->getLanguage();
                }

                $select_language = ilUtil::formSelect ($s_lang, "term_language",$lang,false,true);
                $this->tpl->setVariable("SELECT_LANGUAGE", $select_language);


                // load template for table
                $this->tpl->addBlockfile("TERM_TABLE", "term_table", "tpl.table.html");

                // load template for table content data
                $this->tpl->addBlockfile("TBL_CONTENT", "tbl_content", "tpl.term_tbl_row.html", true);

                $num = 0;

                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));

                // create table
                $tbl = new ilTableGUI();

                // title & header columns
                $tbl->setTitle($this->lng->txt("cont_terms"));
                //$tbl->setHelp("tbl_help.php","icon_help.gif",$this->lng->txt("help"));

                $tbl->setHeaderNames(array("", $this->lng->txt("cont_term"),
                         $this->lng->txt("language"), $this->lng->txt("cont_definitions")));

                $cols = array("", "term", "language", "definitions", "id");
                // get all ilCtrl parameters to feed the table urls
                $header_params = $this->ctrl->getParameterArrayByClass("ilobjglossarygui", "listTerms");
                $tbl->setHeaderVars($cols, $header_params);
                $tbl->setColumnWidth(array("1%","24%","15%","60%"));

                // control
                $tbl->setOrderColumn($_GET["sort_by"]);
                $tbl->setOrderDirection($_GET["sort_order"]);
                $tbl->setLimit($_GET["limit"]);
                $tbl->setOffset($_GET["offset"]);
                $tbl->disable("sort");
                
                $term_list = $this->object->getTermList();
                $tbl->setMaxCount(count($term_list));

//echo "maxcount:".count($term_list).":";
//echo "+".$_GET["offset"]."+".$_GET["limit"]."+";

                $this->setActions(array("confirmTermDeletion" => "delete", "addDefinition" => "cont_add_definition"));
                //$this->setSubObjects(array("term" => array()));

                // footer
                $tbl->setFooter("tblfooter",$this->lng->txt("previous"),$this->lng->txt("next"));

                // sorting array
                //$term_list = ilUtil::sortArray($term_list, $_GET["sort_by"], $_GET["sort_order"]);
                $term_list = array_slice($term_list, $_GET["offset"], $_GET["limit"]);

                // render table
                $tbl->render();

                if (count($term_list) > 0)
                {
                        $this->tpl->setVariable("COLUMN_COUNTS", 4);
                        $this->showActions(true);

                        $i=1;
                        foreach($term_list as $key => $term)
                        {
                                $css_row = ilUtil::switchColor(++$i,"tblrow1","tblrow2");
                                $defs = ilGlossaryDefinition::getDefinitionList($term["id"]);
                                for($j=0; $j<count($defs); $j++)
                                {
                                        $def = $defs[$j];

                                        // up
                                        if ($j > 0)
                                        {
                                                $this->tpl->setCurrentBlock("move_up");
                                                $this->tpl->setVariable("TXT_UP", $this->lng->txt("up"));
                                                $this->ctrl->setParameter($this, "term_id", $term["id"]);
                                                $this->ctrl->setParameter($this, "def", $def["id"]);
                                                $this->tpl->setVariable("LINK_UP",
                                                        $this->ctrl->getLinkTarget($this, "moveDefinitionUp"));
                                                $this->tpl->parseCurrentBlock();
                                        }

                                        // down
                                        if ($j+1 < count($defs))
                                        {
                                                $this->tpl->setCurrentBlock("move_down");
                                                $this->tpl->setVariable("TXT_DOWN", $this->lng->txt("down"));
                                                $this->ctrl->setParameter($this, "term_id", $term["id"]);
                                                $this->ctrl->setParameter($this, "def", $def["id"]);
                                                $this->tpl->setVariable("LINK_DOWN",
                                                        $this->ctrl->getLinkTarget($this, "moveDefinitionDown"));
                                                $this->tpl->parseCurrentBlock();
                                        }

                                        // delete
                                        $this->tpl->setCurrentBlock("delete");
                                        $this->ctrl->setParameter($this, "term_id", $term["id"]);
                                        $this->ctrl->setParameter($this, "def", $def["id"]);
                                        $this->tpl->setVariable("LINK_DELETE",
                                                $this->ctrl->getLinkTarget($this, "confirmDefinitionDeletion"));
                                        $this->tpl->setVariable("TXT_DELETE", $this->lng->txt("delete"));
                                        $this->tpl->parseCurrentBlock();

                                        // edit
                                        $this->tpl->setCurrentBlock("edit");
                                        $this->ctrl->setParameterByClass("ilpageobjectgui", "term_id", $term["id"]);
                                        $this->ctrl->setParameterByClass("ilpageobjectgui", "def", $def["id"]);
                                        $this->tpl->setVariable("LINK_EDIT",
                                                $this->ctrl->getLinkTargetByClass(array("ilglossarytermgui",
                                                "iltermdefinitioneditorgui",
                                                "ilpageobjectgui"), "view"));
                                        $this->tpl->setVariable("TXT_EDIT", $this->lng->txt("edit"));
                                        $this->tpl->parseCurrentBlock();

                                        // text
                                        $this->tpl->setCurrentBlock("definition");
                                        $short_str = ilPCParagraph::xml2output($def["short_text"]);
                                        //$short_str = str_replace("<", "&lt;", $short_str);
                                        //$short_str = str_replace(">", "&gt;", $short_str);
                                        $this->tpl->setVariable("DEF_SHORT", $short_str);
                                        $this->tpl->parseCurrentBlock();

                                        $this->tpl->setCurrentBlock("definition_row");
                                        $this->tpl->parseCurrentBlock();
                                }

                                $this->tpl->setCurrentBlock("check_col");
                                $this->tpl->setVariable("CHECKBOX_ID", $term["id"]);
                                $this->tpl->setVariable("CSS_ROW", $css_row);
                                $this->tpl->parseCurrentBlock();

                                // edit term link
                                $this->tpl->setCurrentBlock("edit_term");
                                $this->tpl->setVariable("TEXT_TERM", $term["term"]);
                                $this->ctrl->setParameter($this, "term_id", $term["id"]);
                                $this->tpl->setVariable("LINK_EDIT_TERM",
                                        $this->ctrl->getLinkTargetByClass("ilglossarytermgui", "editTerm"));
                                $this->tpl->setVariable("TXT_EDIT_TERM", $this->lng->txt("edit"));
                                $this->tpl->parseCurrentBlock();

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

                                // output term and language
                                $this->tpl->setVariable("CSS_ROW", $css_row);
                                $this->tpl->setVariable("TEXT_LANGUAGE", $this->lng->txt("meta_l_".$term["language"]));
                                $this->tpl->setCurrentBlock("tbl_content");
                                $this->tpl->parseCurrentBlock();
                        }
                } //if is_array
                else
                {
                        $this->tpl->setCurrentBlock("notfound");
                        $this->tpl->setVariable("TXT_OBJECT_NOT_FOUND", $this->lng->txt("obj_not_found"));
                        $this->tpl->setVariable("NUM_COLS", $num);
                        $this->tpl->parseCurrentBlock();
                }
        }

Here is the call graph for this function:

ilObjGlossaryGUI::moveDefinitionDown (  ) 

move a definiton down

Definition at line 847 of file class.ilObjGlossaryGUI.php.

References $_GET.

        {
                include_once("content/classes/class.ilGlossaryDefinition.php");

                $definition =& new ilGlossaryDefinition($_GET["def"]);
                $definition->moveDown();

                $this->ctrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::moveDefinitionUp (  ) 

move a definiton up

Definition at line 834 of file class.ilObjGlossaryGUI.php.

References $_GET.

        {
                include_once("content/classes/class.ilGlossaryDefinition.php");

                $definition =& new ilGlossaryDefinition($_GET["def"]);
                $definition->moveUp();

                $this->ctrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::owner (  ) 

show owner

Definition at line 1459 of file class.ilObjGlossaryGUI.php.

References exit.

        {
                echo "Deprecated"; exit;
                
                //$this->prepareOutput();
                //$this->ownerObject();
        }

ilObjGlossaryGUI::perm (  ) 

edit permissions

Definition at line 1414 of file class.ilObjGlossaryGUI.php.

References exit.

        {
                echo "Deprecated"; exit;
                
                //$this->prepareOutput();
                //$this->setFormAction("addRole", "glossary_edit.php?ref_id=".$this->object->getRefId()."&cmd=addRole");
                //$this->setFormAction("permSave", "glossary_edit.php?ref_id=".$this->object->getRefId()."&cmd=permSave");
                //$this->permObject();
        }

ilObjGlossaryGUI::permSave (  ) 

save permissions

Definition at line 1427 of file class.ilObjGlossaryGUI.php.

References exit.

        {
                echo "Deprecated"; exit;
                
                //$this->setReturnLocation("permSave", "glossary_edit.php?ref_id=".$this->object->getRefId()."&cmd=perm");
                //$this->permSaveObject();
        }

ilObjGlossaryGUI::properties (  ) 

edit properties of object (admin form)

public

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

References $rbacsystem, ilObjectGUI::$tpl, ilObjectGUI::$tree, and formSelect().

        {
                global $rbacsystem, $tree, $tpl;

                // glossary properties
                $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.glossary_properties.html", true);
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_PROPERTIES", $this->lng->txt("cont_glo_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");
                }
                
                // glossary mode
                $stati  = array(
                                                "none"=>$this->lng->txt("glo_mode_normal"),
                                                "level"=>$this->lng->txt("glo_mode_level"),
                                                "subtree"=>$this->lng->txt("glo_mode_subtree")
                                                );

                $opts   = ilUtil::formSelect($this->object->getVirtualMode(),"glo_mode",$stati,false,true);
                
                $this->tpl->setVariable("SELECT_GLO_MODE", $opts);
                $this->tpl->setVariable("TXT_GLO_MODE", $this->lng->txt("glo_mode"));
                $this->tpl->setVariable("TXT_GLO_MODE_DESC", $this->lng->txt("glo_mode_desc"));

                // glossary menu
                $this->tpl->setVariable("TXT_GLO_MENU", $this->lng->txt("cont_glo_menu"));
                $this->tpl->setVariable("TXT_ACT_MENU", $this->lng->txt("cont_active"));
                $this->tpl->setVariable("CBOX_GLO_MENU", "glo_act_menu");
                $this->tpl->setVariable("VAL_GLO_MENU", "y");

                if ($this->object->isActiveGlossaryMenu())
                {
                        $this->tpl->setVariable("CHK_GLO_MENU", "checked");
                }
                
                // downloads
                $this->tpl->setVariable("TXT_DOWNLOADS", $this->lng->txt("cont_downloads"));
                $this->tpl->setVariable("TXT_DOWNLOADS_DESC", $this->lng->txt("cont_downloads_desc"));
                $this->tpl->setVariable("CBOX_DOWNLOADS", "glo_act_downloads");
                $this->tpl->setVariable("VAL_DOWNLOADS", "y");
                if ($this->object->isActiveDownloads())
                {
                        $this->tpl->setVariable("CHK_DOWNLOADS", "checked");
                }


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

        }

Here is the call graph for this function:

ilObjGlossaryGUI::publishExportFile (  ) 

download export file

Definition at line 1160 of file class.ilObjGlossaryGUI.php.

References $_POST, and $file.

        {
                if(!isset($_POST["file"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_checkbox"),$this->ilias->error_obj->MESSAGE);
                }
                if (count($_POST["file"]) > 1)
                {
                        $this->ilias->raiseError($this->lng->txt("cont_select_max_one_item"),$this->ilias->error_obj->MESSAGE);
                }
                
                $file = explode(":", $_POST["file"][0]);
                $export_dir = $this->object->getExportDirectory($file[0]);
                
                if ($this->object->getPublicExportFile($file[0]) ==
                        $file[1])
                {
                        $this->object->setPublicExportFile($file[0], "");
                }
                else
                {
                        $this->object->setPublicExportFile($file[0], $file[1]);
                }
                $this->object->update();
                $this->ctrl->redirect($this, "exportList");
        }

ilObjGlossaryGUI::quickList (  ) 

quick term list

Definition at line 496 of file class.ilObjGlossaryGUI.php.

References $_GET, $ilUser, $key, $num, $tbl, $term, ilGlossaryDefinition::getDefinitionList(), and ilUtil::switchColor().

        {
                global $ilUser;

                $this->tpl->addBlockFile("CONTENT", "content", "tpl.glossary_short_list.html", "content");
                
                
                $this->tpl->setVariable("FORMACTION1", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("CMD_REFR", "quickList");
                $this->tpl->setVariable("TXT_REFR", $this->lng->txt("refresh"));
                
                include_once "./classes/class.ilTableGUI.php";

                // glossary term list template

                // load template for table
                $this->tpl->addBlockfile("SHORT_LIST", "list", "tpl.table.html");

                // load template for table content data
                $this->tpl->addBlockfile("TBL_CONTENT", "tbl_content", "tpl.term_short_tbl_row.html", true);

                $num = 0;

                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                // create table
                $tbl = new ilTableGUI();

                // title & header columns
                $tbl->setTitle($this->lng->txt("cont_terms"));
                //$tbl->setHelp("tbl_help.php","icon_help.gif",$this->lng->txt("help"));

                $tbl->setHeaderNames(array($this->lng->txt("cont_term")));

                $cols = array("term");
                //$header_params = array("ref_id" => $this->ref_id, "cmd" => "shortList");
                $header_params = $this->ctrl->getParameterArrayByClass("ilobjglossarygui", "listTerms");
                $header_params["cmd"] = "quickList";
                $tbl->setHeaderVars($cols, $header_params);
                $tbl->setColumnWidth(array("100%"));

                // control
                $tbl->setOrderColumn($_GET["sort_by"]);
                $tbl->setOrderDirection($_GET["sort_order"]);
                $tbl->setLimit($_GET["limit"]);
                $tbl->setOffset($_GET["offset"]);
                $tbl->disable("header");
                
                $term_list = $this->object->getTermList();
                $tbl->setMaxCount(count($term_list));

                $this->tpl->setVariable("COLUMN_COUNT", 1);

                // footer
                $tbl->setFooter("tblfooter",$this->lng->txt("previous"),$this->lng->txt("next"));
                

                // sorting array
                $term_list = array_slice($term_list, $_GET["offset"], $_GET["limit"]);

                // render table
                $tbl->render();

                if (count($term_list) > 0)
                {
                        $i=1;
                        foreach($term_list as $key => $term)
                        {
                                $defs = ilGlossaryDefinition::getDefinitionList($term["id"]);
                                
                                $sep = ": ";
                                for($j=0; $j<count($defs); $j++)
                                {
                                        $def = $defs[$j];

                                        // edit
                                        $this->tpl->setCurrentBlock("definition");
                                        $this->tpl->setVariable("SEP", $sep);
                                        $this->ctrl->setParameterByClass("ilpageobjectgui", "term_id", $term["id"]);
                                        $this->ctrl->setParameterByClass("ilpageobjectgui", "def", $def["id"]);
                                        $this->tpl->setVariable("LINK_EDIT_DEF",
                                                $this->ctrl->getLinkTargetByClass(array("ilglossarytermgui",
                                                "iltermdefinitioneditorgui",
                                                "ilpageobjectgui"), "view"));
                                        $this->tpl->setVariable("TEXT_DEF", $this->lng->txt("glo_definition_abbr").($j+1));
                                        $this->tpl->parseCurrentBlock();
                                        $sep = ", ";
                                }

                                $this->tpl->setCurrentBlock("tbl_content");
                                $css_row = ilUtil::switchColor(++$i,"tblrow1","tblrow2");

                                // edit term link
                                $this->tpl->setVariable("TEXT_TERM", $term["term"]);
                                $this->ctrl->setParameter($this, "term_id", $term["id"]);
                                $this->tpl->setVariable("LINK_EDIT_TERM",
                                        $this->ctrl->getLinkTargetByClass("ilglossarytermgui", "editTerm"));
                                        
                                $this->tpl->setVariable("CSS_ROW", $css_row);
                                $this->tpl->parseCurrentBlock();
                        }
                } //if is_array
                else
                {
                        $this->tpl->setCurrentBlock("notfound");
                        $this->tpl->setVariable("TXT_OBJECT_NOT_FOUND", $this->lng->txt("obj_not_found"));
                        $this->tpl->setVariable("NUM_COLS", $num);
                        $this->tpl->parseCurrentBlock();
                }
        }

Here is the call graph for this function:

ilObjGlossaryGUI::saveObject (  ) 

save new content object to db

Reimplemented from ilObjectGUI.

Definition at line 249 of file class.ilObjGlossaryGUI.php.

References $_GET, $_POST, $rbacadmin, $rbacsystem, ilUtil::redirect(), and sendInfo().

        {
                global $rbacadmin, $rbacsystem;

                // always call parent method first to create an object_data entry & a reference
                //$newObj = parent::saveObject();
                // TODO: fix MetaDataGUI implementation to make it compatible to use parent call
                if (!$rbacsystem->checkAccess("create", $_GET["ref_id"], $_GET["new_type"]))
                {
                        $this->ilias->raiseError($this->lng->txt("no_create_permission"), $this->ilias->error_obj->MESSAGE);
                }
                
                // check required fields
                if (empty($_POST["Fobject"]["title"]))
                {
                        $this->ilErr->raiseError($this->lng->txt("fill_out_all_required_fields"),$this->ilErr->MESSAGE);
                }
                
                // create and insert object in objecttree
                include_once("content/classes/class.ilObjGlossary.php");
                $newObj = new ilObjGlossary();
                $newObj->setType($this->type);
                $newObj->setTitle($_POST["Fobject"]["title"]);
                $newObj->setDescription($_POST["Fobject"]["desc"]);
                $newObj->setVirtualMode($_POST["glo_mode"]);
                $newObj->create();
                $newObj->createReference();
                $newObj->putInTree($_GET["ref_id"]);
                $newObj->setPermissions($_GET["ref_id"]);
                $newObj->notify("new",$_GET["ref_id"],$_GET["parent_non_rbac_id"],$_GET["ref_id"],$newObj->getRefId());

                // always send a message
                sendInfo($this->lng->txt("glo_added"),true);
                ilUtil::redirect("ilias.php?baseClass=ilGlossaryEditorGUI&ref_id=".$newObj->getRefId());

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

Here is the call graph for this function:

ilObjGlossaryGUI::saveProperties (  ) 

save properties

Definition at line 472 of file class.ilObjGlossaryGUI.php.

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

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

Here is the call graph for this function:

ilObjGlossaryGUI::saveTerm (  ) 

Definition at line 1490 of file class.ilObjGlossaryGUI.php.

References $ilCtrl.

        {
                $term_gui =& new ilGlossaryTermGUI();
                $term_gui->setGlossary($this->object);
                $term_gui->save();

                sendinfo($this->lng->txt("cont_added_term"),true);

                //ilUtil::redirect("glossary_edit.php?ref_id=".$_GET["ref_id"]."&cmd=listTerms");
                $ilCtrl->redirect($this, "listTerms");
        }

ilObjGlossaryGUI::setLocator ( a_tree = "",
a_id = "" 
)

set Locator

Parameters:
object tree object
integer reference id public

Definition at line 1385 of file class.ilObjGlossaryGUI.php.

References $_GET, $ilias_locator, and ilObjectGUI::setLocator().

        {
                global $ilias_locator;

                if(strtolower($_GET["baseClass"]) != "ilglossaryeditorgui")
                {
                        parent::setLocator($a_tree, $a_id);
                }
                else
                {
                        if(is_object($this->object))
                        {
                                require_once("content/classes/class.ilGlossaryLocatorGUI.php");
                                $gloss_loc =& new ilGlossaryLocatorGUI();
                                if (is_object($this->term))
                                {
                                        $gloss_loc->setTerm($this->term);
                                }
                                $gloss_loc->setGlossary($this->object);
                                //$gloss_loc->setDefinition($this->definition);
                                $gloss_loc->display();
                        }
                }

        }

Here is the call graph for this function:

ilObjGlossaryGUI::setTabs (  ) 

output tabs

Reimplemented from ilObjectGUI.

Definition at line 1569 of file class.ilObjGlossaryGUI.php.

References getTabs().

Referenced by confirmDeleteExportFile(), executeCommand(), and viewExportLog().

        {

                // catch feedback message
                #include_once("classes/class.ilTabsGUI.php");
                #$tabs_gui =& new ilTabsGUI();
                $this->getTabs($this->tabs_gui);

                #$this->tpl->setVariable("TABS", $tabs_gui->getHTML());

        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilObjGlossaryGUI::updateTerm (  ) 

update term

Definition at line 963 of file class.ilObjGlossaryGUI.php.

References $_GET, $_POST, $term, and ilUtil::stripSlashes().

        {
                $term = new ilGlossaryTerm($_GET["term_id"]);

                $term->setTerm(ilUtil::stripSlashes($_POST["term"]));
                $term->setLanguage($_POST["term_language"]);
                $term->update();
                sendinfo($this->lng->txt("msg_obj_modified"),true);
                $this->ctrl->redirect($this, "listTerms");
        }

Here is the call graph for this function:

ilObjGlossaryGUI::view (  ) 

view content

Definition at line 1470 of file class.ilObjGlossaryGUI.php.

References viewObject().

        {
                //$this->prepareOutput();
                $this->viewObject();
        }

Here is the call graph for this function:

ilObjGlossaryGUI::viewExportLog (  ) 

Definition at line 1190 of file class.ilObjGlossaryGUI.php.

References ilObjectGUI::$tree, and setTabs().

        {
                global $tree;

                $this->setTabs();

                //add template for view button
                $this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");

                // create export file button
                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK", $this->ctrl->getLinkTarget($this, "exportList"));
                $this->tpl->setVariable("BTN_TXT", $this->lng->txt("cont_export_files"));
                $this->tpl->parseCurrentBlock();

                // load files templates
                $this->tpl->setVariable("ADM_CONTENT",
                        nl2br(file_get_contents($this->object->getExportDirectory()."/export.log")));

                $this->tpl->parseCurrentBlock();
        }

Here is the call graph for this function:

ilObjGlossaryGUI::viewObject (  ) 

list childs of current object

public

Reimplemented from ilObjectGUI.

Definition at line 375 of file class.ilObjGlossaryGUI.php.

References $_GET, and $rbacsystem.

Referenced by view().

        {
                global $rbacsystem;
                
                if (strtolower($_GET["baseClass"]) == "iladministrationgui")
                {
                        parent::viewObject();
                        return;
                }

                if (!$rbacsystem->checkAccess("visible,read",$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");

                $this->tpl->setCurrentBlock("btn_cell");
                $this->tpl->setVariable("BTN_LINK",
                        "content/glossary_presentation.php?cmd=listTerms&ref_id=".$this->object->getRefID());
                $this->tpl->setVariable("BTN_TARGET"," target=\"bottom\" ");
                $this->tpl->setVariable("BTN_TXT",$this->lng->txt("view"));
                $this->tpl->parseCurrentBlock();

                //parent::viewObject();
        }

Here is the caller graph for this function:


Field Documentation

ilObjGlossaryGUI::$admin_tabs

Definition at line 47 of file class.ilObjGlossaryGUI.php.

ilObjGlossaryGUI::$mode

Definition at line 48 of file class.ilObjGlossaryGUI.php.

ilObjGlossaryGUI::$term

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