Class ilGlossaryGUI. More...
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 | |
| view () | |
| view content | |
| create () | |
| create new (subobject) in glossary | |
| saveTerm () | |
| addDefinition () | |
| add definition | |
| getTemplate () | |
| setTabs () | |
| output tabs | |
| getTabs (&$tabs_gui) | |
| get tabs | |
| _goto ($a_target) | |
| redirect script | |
Data Fields | |
| $admin_tabs | |
| $mode | |
| $term | |
Class ilGlossaryGUI.
GUI class for ilGlossary
ilObjGlossaryGUI: ilGlossaryTermGUI, ilMDEditorGUI, ilPermissionGUI ilObjGlossaryGUI: ilInfoScreenGUI
Definition at line 44 of file class.ilObjGlossaryGUI.php.
| ilObjGlossaryGUI::_goto | ( | $ | a_target | ) |
redirect script
| string | $a_target |
Definition at line 1637 of file class.ilObjGlossaryGUI.php.
References $_GET, $ilErr, ilObjectGUI::$lng, ilObject::_lookupObjId(), ilObject::_lookupTitle(), exit, and ilUtil::sendInfo().
{
global $rbacsystem, $ilErr, $lng, $ilAccess;
if ($ilAccess->checkAccess("read", "", $a_target))
{
$_GET["ref_id"] = $a_target;
$_GET["baseClass"] = "ilGlossaryPresentationGUI";
include("ilias.php");
exit;
}
else if ($ilAccess->checkAccess("visible", "", $a_target))
{
$_GET["ref_id"] = $a_target;
$_GET["cmd"] = "infoScreen";
$_GET["baseClass"] = "ilGlossaryPresentationGUI";
include("ilias.php");
exit;
}
else if ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID))
{
$_GET["cmd"] = "frameset";
$_GET["target"] = "";
$_GET["ref_id"] = ROOT_FOLDER_ID;
ilUtil::sendInfo(sprintf($lng->txt("msg_no_perm_read_item"),
ilObject::_lookupTitle(ilObject::_lookupObjId($a_target))), true);
include("repository.php");
exit;
}
$ilErr->raiseError($lng->txt("msg_no_perm_read_lm"), $ilErr->FATAL);
}
Here is the call graph for this function:| ilObjGlossaryGUI::addDefinition | ( | ) |
add definition
Definition at line 1502 of file class.ilObjGlossaryGUI.php.
References $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 ("./Modules/Glossary/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::addTerm | ( | ) |
add term
Definition at line 860 of file class.ilObjGlossaryGUI.php.
References $_SESSION, $term, and ilUtil::stripSlashes().
{
// add term
include_once ("./Modules/Glossary/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 191 of file class.ilObjGlossaryGUI.php.
{
include_once("./Modules/Glossary/classes/class.ilObjGlossary.php");
$this->object =& new ilObjGlossary($this->id, true);
}
| ilObjGlossaryGUI::cancelDefinitionDeletion | ( | ) |
Definition at line 972 of file class.ilObjGlossaryGUI.php.
{
$this->ctrl->redirect($this, "listTerms");
}
| ilObjGlossaryGUI::cancelDeleteExportFile | ( | ) |
cancel deletion of export files
Definition at line 1317 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 965 of file class.ilObjGlossaryGUI.php.
References $_GET, ilUtil::redirect(), and ilUtil::sendInfo().
{
ilUtil::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 1409 of file class.ilObjGlossaryGUI.php.
References ilUtil::sendInfo().
{
session_unregister("term_delete");
ilUtil::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 912 of file class.ilObjGlossaryGUI.php.
References $_GET, $term, ilObjStyleSheet::getContentStylePath(), ilObjStyleSheet::getSyntaxStylePath(), and ilUtil::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);
ilUtil::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("ilias.php?baseClass=ilGlossaryPresentationGUI&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 1267 of file class.ilObjGlossaryGUI.php.
References $_SESSION, $file, ilUtil::getImagePath(), ilUtil::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", "Modules/Glossary");
ilUtil::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 1350 of file class.ilObjGlossaryGUI.php.
References $_SESSION, $term, ilUtil::getImagePath(), ilUtil::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");
ilUtil::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 1475 of file class.ilObjGlossaryGUI.php.
{
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 202 of file class.ilObjGlossaryGUI.php.
References $_GET, $_SESSION, ilObjectGUI::$data, ilFrameTargetInfo::_getFrame(), formSelect(), ilUtil::getImagePath(), 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);
$this->tpl->setVariable("TYPE_IMG",ilUtil::getImagePath('icon_glo.gif'));
$this->tpl->setVariable("ALT_IMG", $this->lng->txt("obj_glo"));
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, "save"));
//$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 978 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 1326 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 1419 of file class.ilObjGlossaryGUI.php.
References $_SESSION, 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 1191 of file class.ilObjGlossaryGUI.php.
References $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 988 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 = ilMDLanguageItem::_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 73 of file class.ilObjGlossaryGUI.php.
References $_GET, $cmd, ilObjectGUI::$lng, $ret, 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 "ilinfoscreengui":
$this->getTemplate();
$this->setTabs();
$this->setLocator();
$this->lng->loadLanguageModule("meta");
include_once("./Services/InfoScreen/classes/class.ilInfoScreenGUI.php");
$info = new ilInfoScreenGUI($this);
$info->enablePrivateNotes();
$info->enableNews();
if ($ilAccess->checkAccess("write", "", $_GET["ref_id"]))
{
$info->enableNewsEditing();
$news_set = new ilSetting("news");
$enable_internal_rss = $news_set->get("enable_rss_for_internal");
if ($enable_internal_rss)
{
$info->setBlockProperty("news", "settings", true);
}
}
$info->addMetaDataSections($this->object->getId(),0, $this->object->getType());
$this->ctrl->forwardCommand($info);
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 1167 of file class.ilObjGlossaryGUI.php.
{
require_once("./Modules/Glossary/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 1178 of file class.ilObjGlossaryGUI.php.
{
require_once("./Modules/Glossary/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 1030 of file class.ilObjGlossaryGUI.php.
References $_GET, $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("./Services/Table/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 513 of file class.ilObjGlossaryGUI.php.
References exit.
{
include_once("Services/Frameset/classes/class.ilFramesetGUI.php");
$fs_gui = new ilFramesetGUI();
$fs_gui->setFramesetTitle($this->object->getTitle());
$fs_gui->setMainFrameSource($this->ctrl->getLinkTarget($this, "listTerms"));
$fs_gui->setSideFrameSource($this->ctrl->getLinkTarget($this, "quickList"));
$fs_gui->setMainFrameName("content");
$fs_gui->setSideFrameName("tree");
$fs_gui->show();
exit;
}
| ilObjGlossaryGUI::getTabs | ( | &$ | tabs_gui | ) |
get tabs
Reimplemented from ilObjectGUI.
Definition at line 1580 of file class.ilObjGlossaryGUI.php.
References $_GET.
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);
$force_active = false;
if ($this->ctrl->getCmd() == "showSummary" ||
strtolower($this->ctrl->getNextClass()) == "ilinfoscreengui")
{
$force_active = true;
}
$tabs_gui->addTarget("information_abbr",
$this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary"), "",
"ilInfoScreenGUI", "", $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 1531 of file class.ilObjGlossaryGUI.php.
References $_GET, $title, ilGlossaryTerm::_lookGlossaryTerm(), ilUtil::getImagePath(), and ilUtil::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
ilUtil::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 54 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 319 of file class.ilObjGlossaryGUI.php.
References $_GET, $file, ilObject::_writeImportId(), ilUtil::delDir(), ilUtil::moveUploadedFile(), ilUtil::redirect(), ilUtil::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("./Modules/Glossary/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 ("./Modules/LearningModule/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());
ilUtil::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 267 of file class.ilObjGlossaryGUI.php.
References createObject().
{
$this->createObject();
}
Here is the call graph for this function:| ilObjGlossaryGUI::listTerms | ( | ) |
list terms
Definition at line 646 of file class.ilObjGlossaryGUI.php.
References $_GET, $_SESSION, $lang, $tbl, $term, ilFrameTargetInfo::_getFrame(), ilMDLanguageItem::_getLanguages(), formSelect(), ilGlossaryDefinition::getDefinitionList(), ilUtil::insertLatexImages(), ilObjectGUI::setActions(), ilUtil::shortenText(), ilObjectGUI::showActions(), ilUtil::switchColor(), and ilPCParagraph::xml2output().
{
global $ilUser;
//$this->getTemplate();
//$this->setTabs();
//$this->setLocator();
$this->lng->loadLanguageModule("meta");
include_once "./Services/Table/classes/class.ilTableGUI.php";
// view button
$this->tpl->addBlockfile("BUTTONS", "buttons", "tpl.buttons.html");
$this->tpl->setCurrentBlock("btn_cell");
$this->tpl->setVariable("BTN_LINK",
"ilias.php?baseClass=ilGlossaryPresentationGUI&ref_id=".$this->object->getRefID());
$this->tpl->setVariable("BTN_TARGET"," target=\"".
ilFrameTargetInfo::_getFrame("MainContent")."\" ");
$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, "addTerm"));
$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 = ilMDLanguageItem::_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 = $def["short_text"];
// replace tex
// if a tex end tag is missing a tex end tag
$ltexs = strrpos($short_str, "[tex]");
$ltexe = strrpos($short_str, "[/tex]");
if ($ltexs > $ltexe)
{
$page =& new ilPageObject("gdf", $def["id"]);
$page->buildDom();
$short_str = $page->getFirstParagraphText();
$short_str = strip_tags($short_str, "<br>");
$ltexe = strpos($short_str, "[/tex]", $ltexs);
$short_str = ilUtil::shortenText($short_str, $ltexe+6, true);
}
$short_str = ilUtil::insertLatexImages($short_str);
$short_str = ilPCParagraph::xml2output($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 899 of file class.ilObjGlossaryGUI.php.
References $_GET.
{
include_once("./Modules/Glossary/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 886 of file class.ilObjGlossaryGUI.php.
References $_GET.
{
include_once("./Modules/Glossary/classes/class.ilGlossaryDefinition.php");
$definition =& new ilGlossaryDefinition($_GET["def"]);
$definition->moveUp();
$this->ctrl->redirect($this, "listTerms");
}
| ilObjGlossaryGUI::properties | ( | ) |
edit properties of object (admin form)
public
Definition at line 435 of file class.ilObjGlossaryGUI.php.
References 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,"saveProperties"));
$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 1212 of file class.ilObjGlossaryGUI.php.
References $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 529 of file class.ilObjGlossaryGUI.php.
References $_GET, $tbl, $term, ilGlossaryDefinition::getDefinitionList(), ilUtil::getImagePath(), and ilUtil::switchColor().
{
global $ilUser;
$this->tpl->addBlockFile("CONTENT", "content", "tpl.glossary_short_list.html",
"Modules/Glossary");
$this->tpl->addBlockFile("EXPLORER_TOP", "exp_top", "tpl.explorer_top.html");
$this->tpl->setVariable("IMG_SPACE", ilUtil::getImagePath("spacer.gif", false));
$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 "./Services/Table/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 = $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 275 of file class.ilObjGlossaryGUI.php.
References $_GET, ilUtil::redirect(), and ilUtil::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("./Modules/Glossary/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
ilUtil::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 499 of file class.ilObjGlossaryGUI.php.
References ilUtil::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();
ilUtil::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 1486 of file class.ilObjGlossaryGUI.php.
References $ilCtrl, and ilUtil::sendInfo().
{
$term_gui =& new ilGlossaryTermGUI();
$term_gui->setGlossary($this->object);
$term_gui->save();
ilUtil::sendInfo($this->lng->txt("cont_added_term"),true);
//ilUtil::redirect("glossary_edit.php?ref_id=".$_GET["ref_id"]."&cmd=listTerms");
$ilCtrl->redirect($this, "listTerms");
}
Here is the call graph for this function:| ilObjGlossaryGUI::setLocator | ( | $ | a_tree = "", |
|
| $ | a_id = "" | |||
| ) |
set Locator
| object | tree object | |
| integer | reference id public |
Definition at line 1437 of file class.ilObjGlossaryGUI.php.
References $_GET, 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("./Modules/Glossary/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 1565 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 1015 of file class.ilObjGlossaryGUI.php.
References $_GET, $term, ilUtil::sendInfo(), and ilUtil::stripSlashes().
{
$term = new ilGlossaryTerm($_GET["term_id"]);
$term->setTerm(ilUtil::stripSlashes($_POST["term"]));
$term->setLanguage($_POST["term_language"]);
$term->update();
ilUtil::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 1466 of file class.ilObjGlossaryGUI.php.
References viewObject().
{
//$this->prepareOutput();
$this->viewObject();
}
Here is the call graph for this function:| ilObjGlossaryGUI::viewExportLog | ( | ) |
Definition at line 1242 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 401 of file class.ilObjGlossaryGUI.php.
References $_GET, and ilFrameTargetInfo::_getFrame().
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",
"ilias.php?baseClass=ilGlossaryPresentationGUI&ref_id=".$this->object->getRefID());
$this->tpl->setVariable("BTN_TARGET"," target=\"".
ilFrameTargetInfo::_getFrame("MainContent")."\" ");
$this->tpl->setVariable("BTN_TXT",$this->lng->txt("view"));
$this->tpl->parseCurrentBlock();
//parent::viewObject();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilObjGlossaryGUI::$admin_tabs |
Definition at line 46 of file class.ilObjGlossaryGUI.php.
| ilObjGlossaryGUI::$mode |
Definition at line 47 of file class.ilObjGlossaryGUI.php.
| ilObjGlossaryGUI::$term |
Definition at line 48 of file class.ilObjGlossaryGUI.php.
Referenced by addDefinition(), addTerm(), confirmDefinitionDeletion(), confirmTermDeletion(), deleteTerms(), listTerms(), quickList(), and updateTerm().
1.7.1