Public Member Functions | |
| ilGlossaryPresentationGUI () | |
| Constructor public. | |
| setOfflineMode ($a_offline=true) | |
| set offline mode (content is generated for offline package) | |
| offlineMode () | |
| checks wether offline content generation is activated | |
| executeCommand () | |
| executer command ("listTerms" | "listDefinitions") | |
| prepareOutput () | |
| searchTerms () | |
| listTerms () | |
| listTermByGiven ($term_list, $filter="") | |
| list glossary terms | |
| listDefinitions () | |
| list definitions of a term | |
| fullscreen () | |
| show fullscreen view | |
| media ($a_mode="media") | |
| show media object | |
| showDownloadList () | |
| show download list | |
| downloadExportFile () | |
| send download file (xml/html) | |
| setLocator ($a_tree="", $a_id="") | |
| set Locator | |
| downloadFile () | |
| download file of file lists | |
| setTabs () | |
| output tabs | |
| getLinkXML ($a_int_links) | |
| get link targets | |
| getLink ($a_ref_id, $a_cmd="", $a_term_id="", $a_def_id="", $a_frame="", $a_type="") | |
| handles links for learning module presentation | |
| getTabs (&$tabs_gui) | |
| get tabs | |
| download_paragraph () | |
Data Fields | |
| $admin_tabs | |
| $glossary | |
| $ilias | |
| $tpl | |
| $lng | |
Definition at line 42 of file class.ilGlossaryPresentationGUI.php.
| ilGlossaryPresentationGUI::download_paragraph | ( | ) |
Definition at line 964 of file class.ilGlossaryPresentationGUI.php.
References $_GET.
{
include_once("content/classes/Pages/class.ilPageObject.php");
$pg_obj =& new ilPageObject("gdf", $_GET["pg_id"]);
$pg_obj->send_paragraph ($_GET["par_id"], $_GET["downloadtitle"]);
}
| ilGlossaryPresentationGUI::downloadExportFile | ( | ) |
send download file (xml/html)
Definition at line 689 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $file, ilUtil::deliverFile(), and exit.
{
$file = $this->glossary->getPublicExportFile($_GET["type"]);
if ($this->glossary->getPublicExportFile($_GET["type"]) != "")
{
$dir = $this->glossary->getExportDirectory($_GET["type"]);
if (is_file($dir."/".$file))
{
ilUtil::deliverFile($dir."/".$file, $file);
exit;
}
}
$this->ilias->raiseError($this->lng->txt("file_not_found"),$this->ilias->error_obj->MESSAGE);
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::downloadFile | ( | ) |
download file of file lists
Definition at line 776 of file class.ilGlossaryPresentationGUI.php.
| ilGlossaryPresentationGUI::executeCommand | ( | ) |
executer command ("listTerms" | "listDefinitions")
Definition at line 91 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $cmd, and prepareOutput().
{
$cmd = $_GET["cmd"];
if ($cmd != "listDefinitions")
{
$this->prepareOutput();
}
if($cmd == "")
{
$cmd = "listTerms";
}
$this->$cmd();
$this->tpl->show();
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::fullscreen | ( | ) |
show fullscreen view
Definition at line 497 of file class.ilGlossaryPresentationGUI.php.
References media().
{
$this->media("fullscreen");
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::getLink | ( | $ | a_ref_id, | |
| $ | a_cmd = "", |
|||
| $ | a_term_id = "", |
|||
| $ | a_def_id = "", |
|||
| $ | a_frame = "", |
|||
| $ | a_type = "" | |||
| ) |
handles links for learning module presentation
Definition at line 864 of file class.ilGlossaryPresentationGUI.php.
References $script, and offlineMode().
Referenced by listDefinitions().
{
if ($a_cmd == "")
{
$a_cmd = "layout";
}
$script = "glossary_presentation.php";
// handle online links
if (!$this->offlineMode())
{
$link = $script."?ref_id=".$a_ref_id;
switch ($a_cmd)
{
case "fullscreen":
$link.= "&cmd=fullscreen&def_id=".$a_def_id;
break;
default:
$link.= "&cmd=".$a_cmd;
if ($a_frame != "")
{
$link.= "&frame=".$a_frame;
}
if ($a_obj_id != "")
{
switch ($a_type)
{
case "MediaObject":
$link.= "&mob_id=".$a_obj_id;
break;
default:
$link.= "&def_id=".$a_def_id;
break;
}
}
if ($a_type != "")
{
$link.= "&obj_type=".$a_type;
}
break;
}
}
else // handle offline links
{
switch ($a_cmd)
{
case "downloadFile":
break;
case "fullscreen":
$link = "fullscreen.html"; // id is handled by xslt
break;
case "layout":
break;
case "glossary":
$link = "term_".$a_obj_id.".html";
break;
case "media":
$link = "media_".$a_obj_id.".html";
break;
default:
break;
}
}
return $link;
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::getLinkXML | ( | $ | a_int_links | ) |
get link targets
Definition at line 803 of file class.ilGlossaryPresentationGUI.php.
References $lm_id, $target_arr, $target_id, $type, and ilLMObject::_lookupContObjID().
Referenced by listDefinitions().
{
if ($a_layoutframes == "")
{
$a_layoutframes = array();
}
$link_info = "<IntLinkInfos>";
foreach ($a_int_links as $int_link)
{
$target = $int_link["Target"];
if (substr($target, 0, 4) == "il__")
{
$target_arr = explode("_", $target);
$target_id = $target_arr[count($target_arr) - 1];
$type = $int_link["Type"];
$targetframe = ($int_link["TargetFrame"] != "")
? $int_link["TargetFrame"]
: "None";
switch($type)
{
case "PageObject":
case "StructureObject":
$lm_id = ilLMObject::_lookupContObjID($target_id);
$cont_obj =& $this->content_object;
if ($type == "PageObject")
{
$href = "../goto.php?target=pg_".$target_id;
}
else
{
$href = "../goto.php?target=st_".$target_id;
}
$ltarget = "ilContObj".$lm_id;
break;
case "GlossaryItem":
//$ltarget = $nframe = "_new";
$href = "glossary_presentation.php?cmd=listDefinitions&ref_id=".$_GET["ref_id"].
"&term_id=".$target_id;
break;
case "MediaObject":
$ltarget = $nframe = "_new";
$href = "glossary_presentation.php?obj_type=$type&cmd=media&ref_id=".$_GET["ref_id"].
"&mob_id=".$target_id;
break;
}
$link_info.="<IntLinkInfo Target=\"$target\" Type=\"$type\" ".
"TargetFrame=\"$targetframe\" LinkHref=\"$href\" LinkTarget=\"$ltarget\" />";
}
}
$link_info.= "</IntLinkInfos>";
return $link_info;
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::getTabs | ( | &$ | tabs_gui | ) |
get tabs
Definition at line 943 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $_REQUEST, and offlineMode().
Referenced by setTabs().
{
// back to upper context
if (!empty ($_REQUEST["term"])) {
$append = "&cmd=searchTerms&term=".$_REQUEST["term"]."&oldoffset=".$_GET["oldoffset"];
}
if (!$this->offlineMode())
{
$tabs_gui->addTarget("cont_back",
"glossary_presentation.php?ref_id=".$_GET["ref_id"]."&offset=".$_GET["offset"].$append, "",
"");
}
else
{
$tabs_gui->addTarget("cont_back",
"index.html#term_".$_GET["term_id"], "",
"");
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::ilGlossaryPresentationGUI | ( | ) |
Constructor public.
Definition at line 54 of file class.ilGlossaryPresentationGUI.php.
| ilGlossaryPresentationGUI::listDefinitions | ( | ) |
list definitions of a term
Definition at line 349 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $ilUser, $lm_id, $output, $type, ilLMPageObject::_getPresentationTitle(), ilInternalLink::_getSourcesOfTarget(), ilLMObject::_lookupContObjID(), ilObject::_lookupTitle(), ilObjStyleSheet::getContentStylePath(), ilGlossaryDefinition::getDefinitionList(), getLink(), getLinkXML(), ilObjStyleSheet::getSyntaxStylePath(), offlineMode(), setLocator(), and setTabs().
{
global $ilUser;
require_once("content/classes/Pages/class.ilPageObjectGUI.php");
$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
//$this->setLocator();
$this->setTabs();
if ($this->offlineMode())
{
$style_name = $ilUser->prefs["style"].".css";;
$this->tpl->setVariable("LOCATION_STYLESHEET","./".$style_name);
}
else
{
$this->setLocator();
}
// content style
$this->tpl->setCurrentBlock("ContentStyle");
if (!$this->offlineMode())
{
$this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET",
ilObjStyleSheet::getContentStylePath(0));
}
else
{
$this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET","content.css");
}
$this->tpl->parseCurrentBlock();
// syntax style
$this->tpl->setCurrentBlock("SyntaxStyle");
if (!$this->offlineMode())
{
$this->tpl->setVariable("LOCATION_SYNTAX_STYLESHEET",
ilObjStyleSheet::getSyntaxStylePath());
}
else
{
$this->tpl->setVariable("LOCATION_SYNTAX_STYLESHEET",
"syntaxhighlight.css");
}
$this->tpl->parseCurrentBlock();
$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", "def_list", "tpl.glossary_definition_list.html", true);
//$this->tpl->addBlockfile("STATUSLINE", "statusline", "tpl.statusline.html");
$this->tpl->setVariable("FORMACTION", "glossary_edit.php?ref_id=".$_GET["ref_id"].
"&cmd=post&term_id=".$_GET["term_id"]."&offset=".$_GET["offset"]);
/*
$this->tpl->setVariable("TXT_ADD_DEFINITION",
$this->lng->txt("cont_add_definition"));
$this->tpl->setVariable("BTN_ADD", "addDefinition");*/
$defs = ilGlossaryDefinition::getDefinitionList($_GET["term_id"]);
$this->tpl->setVariable("TXT_TERM", $term->getTerm());
$this->mobs = array();
for($j=0; $j<count($defs); $j++)
{
$def = $defs[$j];
$page =& new ilPageObject("gdf", $def["id"]);
$page_gui =& new ilPageObjectGUI($page);
// internal links
$page->buildDom();
$int_links = $page->getInternalLinks();
$link_xml = $this->getLinkXML($int_links);
$page_gui->setLinkXML($link_xml);
if ($this->offlineMode())
{
$page_gui->setOutputMode("offline");
}
$page_gui->setSourcecodeDownloadScript($this->getLink($_GET["ref_id"]));
$page_gui->setFullscreenLink($this->getLink($_GET["ref_id"], "fullscreen", $_GET["term_id"], $def["id"]));
$page_gui->setTemplateOutput(false);
$page_gui->setFileDownloadLink($this->getLink($_GET["ref_id"], "downloadFile"));
if (!$this->offlineMode())
{
$output = $page_gui->preview();
}
else
{
$output = $page_gui->presentation($page_gui->getOutputMode());
}
if (count($defs) > 1)
{
$this->tpl->setCurrentBlock("definition_header");
$this->tpl->setVariable("TXT_DEFINITION",
$this->lng->txt("cont_definition")." ".($j+1));
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("definition");
$this->tpl->setVariable("PAGE_CONTENT", $output);
$this->tpl->parseCurrentBlock();
}
// display possible backlinks
$sources = ilInternalLink::_getSourcesOfTarget('git',$_GET['term_id'],0);
if ($sources && false)
{
$this->tpl->setVariable("BACKLINK_TITLE",$this->lng->txt('glo_term_used_in'));
foreach ($sources as $src)
{
$type = explode(':',$src['type']);
if ($type[0] == 'lm')
{
if ($type[1] == 'pg')
{
$title = ilLMPageObject::_getPresentationTitle($src['id']);
$lm_id = ilLMObject::_lookupContObjID($src['id']);
$lm_title = ilObject::_lookupTitle($lm_id);
$this->tpl->setCurrentBlock('backlink_item');
$this->tpl->setVariable("BACKLINK_LINK",ILIAS_HTTP_PATH."/goto.php?target=".$type[1]."_".$src['id']);
$this->tpl->setVariable("BACKLINK_ITEM",$lm_title.": ".$title);
$this->tpl->parseCurrentBlock();
}
}
}
}
if ($this->offlineMode())
{
//echo "<br>glo_pres_return";
return $this->tpl->get();
}
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::listTermByGiven | ( | $ | term_list, | |
| $ | filter = "" | |||
| ) |
list glossary terms
Definition at line 150 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $ilCtrl, $num, $tbl, ilObject::_lookupTitle(), ilGlossaryDefinition::getDefinitionList(), offlineMode(), ilUtil::switchColor(), and ilPCParagraph::xml2output().
Referenced by listTerms(), and searchTerms().
{
global $ilCtrl;
$this->lng->loadLanguageModule("meta");
include_once "./classes/class.ilTableGUI.php";
// load template for table
// $this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.table.html");
$oldoffset = (is_numeric ($_GET["oldoffset"]))?$_GET["oldoffset"]:$_GET["offset"];
$this->tpl->addBlockfile("ADM_CONTENT", "adm_content", "tpl.glossary_presentation.html", true);
// search form
if (!$this->offlineMode())
{
$this->tpl->setCurrentBlock("search_form");
$this->tpl->setVariable("FORMACTION1", "glossary_presentation.php?ref_id=".$_GET["ref_id"]."&cmd=searchTerms&offset=0&oldoffset=$oldoffset");
$this->tpl->setVariable("TXT_TERM", $this->lng->txt("cont_term"));
$this->tpl->setVariable("TXT_SEARCH", $this->lng->txt("search"));
$this->tpl->setVariable("TXT_CLEAR", $this->lng->txt("clear"));
$this->tpl->setVariable("TERM", $filter);
$this->tpl->parseCurrentBlock();
}
// glossary menu
if ($this->glossary->isActiveGlossaryMenu())
{
// download links
if (!$this->offlineMode() && $this->glossary->isActiveDownloads())
{
$this->tpl->setCurrentBlock("glo_menu_btn");
$this->tpl->setVariable("BTN_LINK",
"glossary_presentation.php?ref_id=".$_GET["ref_id"]."&cmd=showDownloadList&offset=0&oldoffset=$oldoffset");
$this->tpl->setVariable("BTN_TXT", $this->lng->txt("download"));
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("glo_menu");
$this->tpl->parseCurrentBlock();
}
// 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_pres_row.html", true);
$num = 2;
//$obj_str = ($this->call_by_reference) ? "" : "&obj_id=".$this->obj_id;
//$this->tpl->setVariable("FORMACTION", "glossary_edit.php?ref_id=".$this->ref_id."$obj_str&cmd=post&offset=".$_GET["offset"]);
// create table
$tbl = new ilTableGUI();
// title & header columns
$tbl->setTitle($this->lng->txt("cont_terms").(($filter=="")?"":"*"));
$tbl->disable("sort");
//$tbl->setHelp("tbl_help.php","icon_help.gif",$this->lng->txt("help"));
// display additional column 'glossary' for meta glossaries
if ($this->glossary->isVirtual())
{
$tbl->setHeaderNames(array($this->lng->txt("cont_term"),
$this->lng->txt("cont_definitions"),$this->lng->txt("obj_glo")));
$cols = array("term", "definitions", "glossary");
$tbl->setColumnWidth(array("30%", "35%", "35%"));
}
else
{
$tbl->setHeaderNames(array($this->lng->txt("cont_term"),
$this->lng->txt("cont_definitions")));
$cols = array("term", "definitions");
$tbl->setColumnWidth(array("30%", "70%"));
}
$header_params = array("ref_id" => $_GET["ref_id"], "cmd" => "listTerms");
if (!empty ($filter)) {
$header_params ["cmd"] = "searchTerms";
$header_params ["term"] = $filter;
$header_params ["oldoffset"] = $_GET["oldoffset"];
}
$tbl->setHeaderVars($cols, $header_params);
// control
$tbl->setOrderColumn($_GET["sort_by"]);
$tbl->setOrderDirection($_GET["sort_order"]);
if ($this->offlineMode())
{
$_GET["limit"] = 99999;
$_GET["offset"] = 0;
$tbl->disable("sort");
$tbl->disable("footer");
}
$tbl->setOffset($_GET["offset"]);
$tbl->setLimit($_GET["limit"]);
$tbl->setMaxCount($this->maxcount);
//$this->tpl->setVariable("COLUMN_COUNTS", 4);
// footer
$tbl->setFooter("tblfooter",$this->lng->txt("previous"),$this->lng->txt("next"));
// $term_list = $this->glossary->getTermList();
$tbl->setMaxCount(count($term_list));
// 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)
{
$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];
if (count($defs) > 1)
{
$this->tpl->setCurrentBlock("definition");
$this->tpl->setVariable("DEF_TEXT", $this->lng->txt("cont_definition")." ".($j + 1));
$this->tpl->parseCurrentBlock();
}
//
$this->tpl->setCurrentBlock("definition");
$short_str = ilPCParagraph::xml2output($def["short_text"]);
//$short_str = str_replace("<", "<", $short_str);
//$short_str = str_replace(">", ">", $short_str);
$this->tpl->setVariable("DEF_SHORT", $short_str);
$this->tpl->parseCurrentBlock();
$this->tpl->setCurrentBlock("definition_row");
$this->tpl->parseCurrentBlock();
}
// display additional column 'glossary' for meta glossaries
if ($this->glossary->isVirtual())
{
$this->tpl->setCurrentBlock("glossary_row");
$glo_title = ilObject::_lookupTitle($term["glo_id"]);
$this->tpl->setVariable("GLO_TITLE", $glo_title);
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("view_term");
$this->tpl->setVariable("TEXT_TERM", $term["term"]);
if (!empty ($filter)) {
$append = "&term=$filter&oldoffset=".$_GET["oldoffset"];
}
if (!$this->offlineMode())
{
$this->tpl->setVariable("LINK_VIEW_TERM", "glossary_presentation.php?ref_id=".
$_GET["ref_id"]."&cmd=listDefinitions&term_id=".$term["id"]."&offset=".$_GET["offset"].$append);
}
else
{
$this->tpl->setVariable("LINK_VIEW_TERM", "term_".$term["id"].".html");
}
$this->tpl->setVariable("ANCHOR_TERM", "term_".$term["id"]);
$this->tpl->parseCurrentBlock();
$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();
}
if ($this->offlineMode())
{
return $this->tpl->get();
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::listTerms | ( | ) |
Definition at line 140 of file class.ilGlossaryPresentationGUI.php.
References listTermByGiven().
{
$term_list = $this->glossary->getTermList();
return $this->listTermByGiven($term_list);
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::media | ( | $ | a_mode = "media" |
) |
show media object
Definition at line 505 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $args, $output, $params, $xh, $xml, $xsl, ilMediaItem::_getMapAreasIntLinks(), ilObjStyleSheet::getContentStylePath(), ilUtil::getImagePath(), ilUtil::getStyleSheetLocation(), ilUtil::getWebspaceDir(), offlineMode(), xslt_create(), xslt_error(), xslt_free(), and xslt_process().
Referenced by fullscreen().
{
$this->tpl =& new ilTemplate("tpl.fullscreen.html", true, true, "content");
include_once("classes/class.ilObjStyleSheet.php");
$this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
$this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET",
ilObjStyleSheet::getContentStylePath(0));
//$int_links = $page_object->getInternalLinks();
$med_links = ilMediaItem::_getMapAreasIntLinks($_GET["mob_id"]);
// later
//$link_xml = $this->getLinkXML($med_links, $this->getLayoutLinkTargets());
$link_xlm = "";
require_once("content/classes/Media/class.ilObjMediaObject.php");
$media_obj =& new ilObjMediaObject($_GET["mob_id"]);
$xml = "<dummy>";
// todo: we get always the first alias now (problem if mob is used multiple
// times in page)
$xml.= $media_obj->getXML(IL_MODE_ALIAS);
$xml.= $media_obj->getXML(IL_MODE_OUTPUT);
$xml.= $link_xml;
$xml.="</dummy>";
$xsl = file_get_contents("./content/page.xsl");
$args = array( '/_xml' => $xml, '/_xsl' => $xsl );
$xh = xslt_create();
$wb_path = ilUtil::getWebspaceDir("output");
$mode = $a_mode;
$enlarge_path = ilUtil::getImagePath("enlarge.gif", false, "output");
$fullscreen_link = "glossary_presentation.php?ref_id=".$_GET["ref_id"]."&obj_type=MediaObject&cmd=fullscreen"
;
$params = array ('mode' => $mode, 'enlarge_path' => $enlarge_path,
'link_params' => "ref_id=".$_GET["ref_id"],'fullscreen_link' => $fullscreen_link,
'ref_id' => $_GET["ref_id"], 'pg_frame' => $pg_frame, 'webspace_path' => $wb_path);
$output = xslt_process($xh,"arg:/_xml","arg:/_xsl",NULL,$args, $params);
echo xslt_error($xh);
xslt_free($xh);
// unmask user html
$this->tpl->setVariable("MEDIA_CONTENT", $output);
$this->tpl->parseCurrentBlock();
if (!$this->offlineMode())
{
$this->tpl->show();
}
else
{
return $this->tpl->get();
}
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::offlineMode | ( | ) |
checks wether offline content generation is activated
Definition at line 81 of file class.ilGlossaryPresentationGUI.php.
Referenced by getLink(), getTabs(), listDefinitions(), listTermByGiven(), and media().
{
return $this->offline;
}
Here is the caller graph for this function:| ilGlossaryPresentationGUI::prepareOutput | ( | ) |
Definition at line 108 of file class.ilGlossaryPresentationGUI.php.
References sendInfo(), and setLocator().
Referenced by executeCommand().
{
$this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
$this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
$title = $this->glossary->getTitle();
// catch feedback message
sendInfo();
if (!empty($title))
{
$this->tpl->setVariable("HEADER", $title);
}
$this->setLocator();
}
Here is the call graph for this function:
Here is the caller graph for this function:| ilGlossaryPresentationGUI::searchTerms | ( | ) |
Definition at line 125 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $_POST, $_REQUEST, and listTermByGiven().
{
if (isset ($_POST["clear"]))
{
$searchterm ="";
$_GET["offset"] = $_GET["oldoffset"];
} else
{
$searchterm = $_REQUEST ["term"];
}
$term_list = $this->glossary->getTermList($searchterm);
$this->listTermByGiven($term_list, $searchterm);
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::setLocator | ( | $ | a_tree = "", |
|
| $ | a_id = "" | |||
| ) |
set Locator
| object | tree object | |
| integer | reference id public |
Definition at line 711 of file class.ilGlossaryPresentationGUI.php.
References $_GET, and $ilias_locator.
Referenced by listDefinitions(), and prepareOutput().
{
global $ilias_locator;
//$this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");
require_once ("content/classes/class.ilGlossaryLocatorGUI.php");
$gloss_loc =& new ilGlossaryLocatorGUI();
$gloss_loc->setMode("presentation");
if (!empty($_GET["term_id"]))
{
$term =& new ilGlossaryTerm($_GET["term_id"]);
$gloss_loc->setTerm($term);
}
$gloss_loc->setGlossary($this->glossary);
//$gloss_loc->setDefinition($this->definition);
$gloss_loc->display();
return;
// ### AA 03.11.10 added new locator GUI class ###
$i = 1;
//$this->tpl->addBlockFile("LOCATOR", "locator", "tpl.locator.html");
if (!empty($_GET["term_id"]))
{
$this->tpl->touchBlock("locator_separator");
}
$this->tpl->setCurrentBlock("locator_item");
$this->tpl->setVariable("ITEM", $this->glossary->getTitle());
// TODO: SCRIPT NAME HAS TO BE VARIABLE!!!
$this->tpl->setVariable("LINK_ITEM", "glossary_presentation.php?ref_id=".$_GET["ref_id"]."&cmd=listTerms");
$this->tpl->parseCurrentBlock();
// ### AA 03.11.10 added new locator GUI class ###
// navigate locator
$ilias_locator->navigate($i++,$this->glossary->getTitle(),"glossary_presentation.php?ref_id=".$_GET["ref_id"]."&cmd=listTerms"."&offset=".$_GET["offset"],"bottom");
if (!empty($_GET["term_id"]))
{
$term =& new ilGlossaryTerm($_GET["term_id"]);
$this->tpl->setCurrentBlock("locator_item");
$this->tpl->setVariable("ITEM", $term->getTerm());
$this->tpl->setVariable("LINK_ITEM", "glossary_presentation.php?ref_id=".$_GET["ref_id"].
"&cmd=listDefinitions&term_id=".$term->getId()."&offset=".$_GET["offset"]);
$this->tpl->parseCurrentBlock();
// ### AA 03.11.10 added new locator GUI class ###
// navigate locator
$ilias_locator->navigate($i++,$term->getTerm(),"glossary_edit.php?ref_id=".$_GET["ref_id"].
"&cmd=listDefinitions&term_id=".$term->getId()."&offset=".$_GET["offset"],"bottom");
}
//$this->tpl->touchBlock("locator_separator");
$this->tpl->setCurrentBlock("locator");
$this->tpl->setVariable("TXT_LOCATOR",$debug.$this->lng->txt("locator"));
$this->tpl->parseCurrentBlock();
}
Here is the caller graph for this function:| ilGlossaryPresentationGUI::setOfflineMode | ( | $ | a_offline = true |
) |
set offline mode (content is generated for offline package)
Definition at line 72 of file class.ilGlossaryPresentationGUI.php.
{
$this->offline = $a_offline;
}
| ilGlossaryPresentationGUI::setTabs | ( | ) |
output tabs
Definition at line 788 of file class.ilGlossaryPresentationGUI.php.
References getTabs().
Referenced by listDefinitions().
{
// catch feedback message
include_once("classes/class.ilTabsGUI.php");
$tabs_gui =& new ilTabsGUI();
$this->getTabs($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:| ilGlossaryPresentationGUI::showDownloadList | ( | ) |
show download list
Definition at line 567 of file class.ilGlossaryPresentationGUI.php.
References $_GET, $ilBench, $num, $size, $tbl, $type, and ilUtil::switchColor().
{
global $ilBench;
//$this->tpl = new ilTemplate("tpl.lm_toc.html", true, true, true);
/*
$this->tpl->setCurrentBlock("ContentStyle");
$this->tpl->setVariable("LOCATION_CONTENT_STYLESHEET", "content.css");
$this->tpl->parseCurrentBlock();
$this->tpl->setVariable("PAGETITLE", " - ".$this->glossary->getTitle());
$this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());*/
$this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.glo_download_list.html", true);
// set title header
$this->tpl->setVariable("HEADER", $this->glossary->getTitle());
$this->tpl->setVariable("TXT_BACK", $this->lng->txt("back"));
$this->tpl->setVariable("LINK_BACK",
"glossary_presentation.php?ref_id=".$_GET["ref_id"]);
// create table
require_once("classes/class.ilTableGUI.php");
$tbl = new ilTableGUI();
// load files templates
$this->tpl->addBlockfile("DOWNLOAD_TABLE", "download_table", "tpl.table.html");
// load template for table content data
$this->tpl->addBlockfile("TBL_CONTENT", "tbl_content", "tpl.download_file_row.html", true);
$export_files = array();
$types = array("xml", "html");
foreach($types as $type)
{
if ($this->glossary->getPublicExportFile($type) != "")
{
$dir = $this->glossary->getExportDirectory($type);
if (is_file($this->glossary->getExportDirectory($type)."/".
$this->glossary->getPublicExportFile($type)))
{
$size = filesize($this->glossary->getExportDirectory($type)."/".
$this->glossary->getPublicExportFile($type));
$export_files[] = array("type" => $type,
"file" => $this->glossary->getPublicExportFile($type),
"size" => $size);
}
}
}
$num = 0;
$tbl->setTitle($this->lng->txt("download"));
$tbl->setHeaderNames(array($this->lng->txt("cont_format"),
$this->lng->txt("cont_file"),
$this->lng->txt("size"), $this->lng->txt("date"),
""));
$cols = array("format", "file", "size", "date", "download");
$header_params = array("ref_id" => $_GET["ref_id"], "obj_id" => $_GET["obj_id"],
"cmd" => "showDownloadList", "cmdClass" => strtolower(get_class($this)));
$tbl->setHeaderVars($cols, $header_params);
$tbl->setColumnWidth(array("10%", "30%", "20%", "20%","20%"));
$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);
// 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"]);
$this->tpl->setVariable("TXT_FORMAT", strtoupper($exp_file["type"]));
$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->setVariable("TXT_DOWNLOAD", $this->lng->txt("download"));
$this->tpl->setVariable("LINK_DOWNLOAD",
"glossary_presentation.php?cmd=downloadExportFile&type=".
$exp_file["type"]."&ref_id=".$_GET["ref_id"]);
$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", 5);
$this->tpl->parseCurrentBlock();
}
//$this->tpl->show();
}
Here is the call graph for this function:| ilGlossaryPresentationGUI::$admin_tabs |
Definition at line 44 of file class.ilGlossaryPresentationGUI.php.
| ilGlossaryPresentationGUI::$glossary |
Definition at line 45 of file class.ilGlossaryPresentationGUI.php.
| ilGlossaryPresentationGUI::$ilias |
Definition at line 46 of file class.ilGlossaryPresentationGUI.php.
Referenced by ilGlossaryPresentationGUI().
| ilGlossaryPresentationGUI::$lng |
Definition at line 48 of file class.ilGlossaryPresentationGUI.php.
Referenced by ilGlossaryPresentationGUI().
| ilGlossaryPresentationGUI::$tpl |
Definition at line 47 of file class.ilGlossaryPresentationGUI.php.
Referenced by ilGlossaryPresentationGUI().
1.7.1